......

 >  기사  >  CMS 튜토리얼  >  ECshop에서 배송방법 취소하는 방법

ECshop에서 배송방법 취소하는 방법

藏色散人
藏色散人원래의
2023-03-03 09:56:372101검색

ecshop에서 배송 방법을 취소하는 방법: 1. "flow.dwt" 파일을 찾아서 연 다음 "5437f5f5298dada089556fd960937a39...<를 삭제합니다. ;!-- {/if} -->" 코드; 2. "js/shopping_flow.js"의 "checkOrderForm(frm)"을 "if (document.getElementById(...)"로 변경합니다.

ECshop에서 배송방법 취소하는 방법

이 튜토리얼의 운영 환경: Windows 10 시스템, ecshop 버전 2.7.3, DELL G3 컴퓨터

ecshop에서 배송 방법을 취소하는 방법

ECSHOP 배송 방법을 제거

2.7을 사용하세요. 3 기본 버전을 예시로

1. flow.dwt

<!--{if $total.real_goods_count neq 0}-->
        <div class="colbox colpd">
          <h3>配送方式</h3>
          <div class="colboxcontent">
            <table border="0" cellspacing="0" class="styletable">
              <tr>
                <th width="5"> </th>
                <th width="100">{$lang.name}</th>
                <th width="400">{$lang.describe}</th>
                <th width="100">{$lang.fee}</th>
                <th width="80">{$lang.free_money}</th>
                <th width="80">{$lang.insure_fee}</th>
              </tr>
              <!-- {foreach from=$shipping_list item=shipping key=key} 循环配送方式 -->
              <tr>
                <td>
                  <input name="shipping" type="radio" value="{$shipping.shipping_id}" {if $order.shipping_id eq $shipping.shipping_id}checked="true"{/if} supportCod="{$shipping.support_cod}" insure="{$shipping.insure}" οnclick="selectShipping(this)" id="shipping{$key}" />
                </td>
                <td><label for="shipping{$key}">{$shipping.shipping_name}</label></td>
                <td>{$shipping.shipping_desc}</td>
                <td>{$shipping.format_shipping_fee}</td>
                <td>{$shipping.free_money}</td>
                <td>
                  <!-- {if $shipping.insure neq 0} -->
                  {$shipping.insure_formated}
                  <!-- {else} -->
                  {$lang.not_support_insure}
                  <!-- {/if} -->
                </td>
              </tr>
              <!-- {/foreach} 循环配送方式 -->
              <tr>
                <td colspan="6" align="right">
                  <label for="ECS_NEEDINSURE" class="textStrong">
                  <input name="need_insure" type="checkbox"  οnclick="selectInsure(this.checked)" value="1"{if $order.need_insure} checked="checked"{/if}{if $insure_disabled} disabled="disabled"{/if} id="ECS_NEEDINSURE"  />
                  {$lang.need_insure}
                  </label>
                </td>
              </tr>
            </table>
          </div>
        </div><!-- /colbox -->
        <!-- {else} -->
        <input name = "shipping" type="radio" value = "-1" checked="checked" style="display:none" />
        <!-- {/if} -->

2에서 이 단락을 삭제하세요. js/shopping_flow.js의 checkOrderForm(frm)을 flow.php에서 if ($_REQUEST['step)로 변경하세요. '] == 'done'

function checkOrderForm(frm)
{
 
  // 检查用户输入的余额
  if (document.getElementById("ECS_SURPLUS"))
  {
    var surplus = document.getElementById("ECS_SURPLUS").value;
    var error   = Utils.trim(Ajax.call(&#39;flow.php?step=check_surplus&#39;, &#39;surplus=&#39; + surplus, null, &#39;GET&#39;, &#39;TEXT&#39;, false));
 
    if (error)
    {
      try
      {
        document.getElementById("ECS_SURPLUS_NOTICE").innerHTML = error;
      }
      catch (ex)
      {
      }
      return false;
    }
  }
 
  // 检查用户输入的积分
  if (document.getElementById("ECS_INTEGRAL"))
  {
    var integral = document.getElementById("ECS_INTEGRAL").value;
    var error    = Utils.trim(Ajax.call(&#39;flow.php?step=check_integral&#39;, &#39;integral=&#39; + integral, null, &#39;GET&#39;, &#39;TEXT&#39;, false));
 
    if (error)
    {
      return false;
      try
      {
        document.getElementById("ECS_INTEGRAL_NOTICE").innerHTML = error;
      }
      catch (ex)
      {
      }
    }
  }
  frm.action = frm.action + &#39;?step=done&#39;;
  return true;
}

if ($order[&#39;order_amount&#39;] > 0)
    {
        $payment = payment_info($order[&#39;pay_id&#39;]);
 
        include_once(&#39;includes/modules/payment/&#39; . $payment[&#39;pay_code&#39;] . &#39;.php&#39;);
 
        $pay_obj    = new $payment[&#39;pay_code&#39;];
 
        $pay_online = $pay_obj->get_code($order, unserialize_config($payment[&#39;pay_config&#39;]));
 
        $order[&#39;pay_desc&#39;] = $payment[&#39;pay_desc&#39;];
 
        $smarty->assign(&#39;pay_online&#39;, $pay_online);
    }

4를 주석 처리하세요. flow.dwt의 e353f4b12e30202cd8ee9c221b860f70에 있는 텍스트를 직접 정의할 수 있습니다

추천 학습: "

ECShop Tutorial

위 내용은 ECshop에서 배송방법 취소하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:ECshop에는 어떤 기능이 있나요?다음 기사:없음