智慧建站平台,千套网站模板,免费随心选!

您现在的位置: 首页>>网站教程

ecshop怎么取消配送方式

来源: 发布时间:2023-03-03热度:1569 ℃
ecshop取消配送方式的方法:1、找到并打开“flow.dwt”文件,然后删除“...”代码;2、将”js/shopping_flow.js“中的”checkorderform(frm)“改为”if···

ecshop取消配送方式的方法:1、找到并打开“flow.dwt”文件,然后删除“...”代码;2、将”js/shopping_flow.js“中的”checkorderform(frm)“改为”if (document.getelementbyid(...)“即可。

ecshop怎么取消配送方式

本教程操作环境:Windows10系统、ecshop2.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} -->
登录后复制

本文地址:http://yunji1.cn