`

ecshop 去掉配送方式

阅读更多
模板:在flow.dwt里的html去掉


  <!--{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">&nbsp;</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}" onclick="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"  onclick="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} -->

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
JS部分

找到js資料夾裡面的shopping_flow

下列紅色代表配送檢查和警示
藍色代表支付

如果都取消
當然不會有限制
但會出現一個問題
如果沒有選擇的話按結帳
網頁會出現錯誤
但還是會有訂單進來
只是客人會以為沒有訂購成功

建議把紅色的部份刪掉就好


// 检查是否选择了支付配送方式
  for (i = 0; i < frm.elements.length; i ++ )
  {
    if (frm.elements.name == 'shipping' && frm.elements.checked)
    {
      shippingSelected = true;
    }
    if (frm.elements.name == 'payment' && frm.elements.checked)
    {
      paymentSelected = true;
    }
  }
  if ( ! shippingSelected)
  {
    alert(flow_no_shipping);
    return false;
  }
  if ( ! paymentSelected)
  {
    alert(flow_no_payment);
    return false;
  }
分享到:
评论

相关推荐

    ECShop模板开发详解.pdf

    系统支持多种支付和配送方式,可以随时增加或变更,并支持与大部分PHP开发的论坛系统进行会员整合。 在SEO支持方面,ECShop支持两种URL重写方式,并首家支持google/yahoo/microsoft共同发布的sitemaps 0.9网站索引...

    ecshop编程说明书

    - 支持以插件形式实现支付、配送等功能,易于商家随时增加或变更。 - 支持与大多数PHP开发的论坛系统如Discuz、PhpWind等进行会员整合。 - **功能AJAX化**: - 使用AJAX技术提升批量数据编辑的速度和便利性。 - **...

    EcShop开发案例整理

    57.发货查询加入收货人、地址、时间、配送方式:修改模板文件,加入这些信息的输入和展示。 58.增加物流跟踪或包裹跟踪功能:通过调用物流接口或者自建跟踪模块,实现物流信息的实时更新。 59.自定义URL静态路径...

    ecshop模板制作引导手册.pdf

    商家可以轻松地增加或变更支付方式和配送体系,以插件形式实现这些功能。ECShop还支持与PHP开发的论坛系统整合,如discuz和phpwind,只需要在后台进行简单的参数配置。 此外,ECShop特别注重SEO的支持。它独家支持...

    ecshop二次开发资料教程

    - **开放的插件机制**:支付、配送以及会员整合等核心功能均采用插件形式实现,商家可以根据需求自由选择支付方式和配送体系,并且ECShop支持与大多数PHP开发的论坛系统(如Discuz!、phpWind等)进行会员整合。 - **...

    ecshop函数列表

    - **功能**: 获取配送方式配置信息。 - **参数**: - `$area_id`: 地区 ID。 **init_users()** - **功能**: 初始化用户信息。 - **参数**: 无。 **cat_list($cat_id=0,$selected=0,$re_type=true,$level=0,$is_...

    ecshop开发教程资料大全

    ECShop二次开发思想.pdf ——ECShop 2.5.1 的结构图及各文件相应功能介绍 ——ECShop2.5.1_Beta upload 的目录 ——┣ activity.php 活动列表 ——┣ affiche.php 广告处理文件 ——┣ affiliate.php 生成商品列表 ...

    毕业设计-动态网站开发与设计.doc

    在目录中,我们将对 ECShop 的各种功能进行详细的介绍和分析,包括前台标志的修改、界面友情连接的删除、去掉底部的 Powered by ecshop 标志、订单增加备注功能、自定义商品扩展名功能等。 本毕业设计旨在对动态...

    ecshop函数列表大全.txt

    ### ECShop函数列表详解 #### 一、时间与日期处理函数 **1. `gmtime()`** - **功能描述**:返回当前的格林威治时间戳。 - **参数说明**:无参数。 **2. `server_timezone()`** - **功能描述**:获取服务器的...

    ecshop完美商城程序.v2.5

    ECSHOPv2.5.0RELEASE [增加]增加拍卖的功能模块 [增加]增加批发的功能模块 [增加]增加销售专题活动的功能 [增加]增加办事处的功能 [增加]增加了推荐提成功能 [增加]增加多种优惠活动 ...[删除]去掉插件管理

    动态网站开发与设计正文终稿.doc

    2. **开放的插件机制**:支付和配送方式以插件形式存在,允许商家根据需要自由添加或更改支付方式和配送策略。同时,ECShop支持与Discuz、phpWind等常见论坛系统的会员整合,仅需简单后台配置即可实现。 3. **AJAX...

    微信通源码+wap手机版

    3:增加后台配送方式选择功能 2014.8.8 手机会员中心推荐分成,自动推荐生成二维码 2014.8.7 手机模板订单邮件微信、邮件通知;不用总守着电脑看单! 2014.8.5 更新 手机商品详情页显示库存! 2014.8.1 更新 ...

Global site tag (gtag.js) - Google Analytics