- 浏览: 219816 次
- 性别:
- 来自: 南宁
文章分类
最新评论
-
rogermmg:
把商品 分享到facebook,twitter 等等 连接代码集合 -
qq398705749:
qkjava 写道不知道涉及到放大的页面一共有几个就一个呀
局部图片放大功能 magiczoom -
qkjava:
不知道涉及到放大的页面一共有几个
局部图片放大功能 magiczoom -
qq398705749:
lz12366 写道mysql_connect,mysql_q ...
创建在网页的mysql表 -
lz12366:
mysql_connect,mysql_query都是jque ...
创建在网页的mysql表
模板:在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"> </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;
}
<!--{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}" 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 textarea过滤问题
2012-10-12 15:21 0下面是我对这个问题 ... -
BIGINT UNSIGNED value is out of range in问题
2012-10-11 11:20 7723MySQL server error report:Array ... -
ecshop 订阅邮件用excel导出
2012-09-25 12:28 13311.在email_list.php 找到 /*- ... -
两种调取wordpress的方法
2012-08-14 11:03 1370/*调用wordpress最新文章 远程调取的最新文章* ... -
ecshop smarty html过滤
2012-08-11 15:11 1056{变量|escape:"html"|nl2 ... -
EC 获取某个大类下面的类别 这里可以正常循环,跟分类树那样循环出来 xiaoyu
2012-07-05 10:10 886/** * 获取某个大类下面的类别 这里可以正常循环 ... -
EC 获取某个大类下面的类别 这里可以正常循环,跟分类树那样循环出来 xiaoyu
2012-07-05 10:10 931/** * 获取某个大类下面的类别 这里可以正常循环 ... -
配置admin 目录访问需要密码
2012-07-03 12:34 0Apache 目录访问控制密码验证 (2012-06 ... -
时间的
2012-04-21 13:57 0php时间的操作,前一天,后一天时间的获取 (2 ... -
转载 ecshop在后台禁止某些IP的用户访问商城
2012-04-21 13:43 0在我们开商城的时候,有些恶意用户的捣乱,我们可以通过禁止 ... -
mysql_fetch_row,mysql_fetch_assoc,mysql_fetch_array,mysql_fetch_object
2012-04-09 14:27 972一、mysql_fetch_row 这个函数是从结 ... -
自定义伪静态的一小段
2012-03-23 16:44 0case 'goods': i ... -
老版本ecshop 后台修改路径
2012-02-27 16:57 2597修改ECSHOP后台登录的路径(admin目录)为 ... -
ecshop 改变categroy的title
2012-02-27 15:03 762Categroy.php 把 //$smarty-& ... -
把商品 分享到facebook,twitter 等等 连接代码集合
2012-02-27 14:12 3190自己选择自己喜欢的放进去吧 -
学习 ecshop在大数据量下的速度优化
2012-02-23 22:35 3709插件简介:ecshop在 ... -
学习整合一
2012-02-16 13:19 845最近看到网上有很多 ... -
ecshop 的伪静态
2012-02-16 11:44 10111、首先您需要找到 Apache 安装目录,之后找到 c ... -
找到的The table ‘ecs_sessions’ is full 处理方法
2012-02-13 15:23 6736突然发现完整提示MySQL server er ... -
局部图片放大功能 magiczoom
2011-12-19 17:00 1943{insert_scripts files='magic ...
相关推荐
系统支持多种支付和配送方式,可以随时增加或变更,并支持与大部分PHP开发的论坛系统进行会员整合。 在SEO支持方面,ECShop支持两种URL重写方式,并首家支持google/yahoo/microsoft共同发布的sitemaps 0.9网站索引...
- 支持以插件形式实现支付、配送等功能,易于商家随时增加或变更。 - 支持与大多数PHP开发的论坛系统如Discuz、PhpWind等进行会员整合。 - **功能AJAX化**: - 使用AJAX技术提升批量数据编辑的速度和便利性。 - **...
57.发货查询加入收货人、地址、时间、配送方式:修改模板文件,加入这些信息的输入和展示。 58.增加物流跟踪或包裹跟踪功能:通过调用物流接口或者自建跟踪模块,实现物流信息的实时更新。 59.自定义URL静态路径...
商家可以轻松地增加或变更支付方式和配送体系,以插件形式实现这些功能。ECShop还支持与PHP开发的论坛系统整合,如discuz和phpwind,只需要在后台进行简单的参数配置。 此外,ECShop特别注重SEO的支持。它独家支持...
- **开放的插件机制**:支付、配送以及会员整合等核心功能均采用插件形式实现,商家可以根据需求自由选择支付方式和配送体系,并且ECShop支持与大多数PHP开发的论坛系统(如Discuz!、phpWind等)进行会员整合。 - **...
- **功能**: 获取配送方式配置信息。 - **参数**: - `$area_id`: 地区 ID。 **init_users()** - **功能**: 初始化用户信息。 - **参数**: 无。 **cat_list($cat_id=0,$selected=0,$re_type=true,$level=0,$is_...
ECShop二次开发思想.pdf ——ECShop 2.5.1 的结构图及各文件相应功能介绍 ——ECShop2.5.1_Beta upload 的目录 ——┣ activity.php 活动列表 ——┣ affiche.php 广告处理文件 ——┣ affiliate.php 生成商品列表 ...
在目录中,我们将对 ECShop 的各种功能进行详细的介绍和分析,包括前台标志的修改、界面友情连接的删除、去掉底部的 Powered by ecshop 标志、订单增加备注功能、自定义商品扩展名功能等。 本毕业设计旨在对动态...
### ECShop函数列表详解 #### 一、时间与日期处理函数 **1. `gmtime()`** - **功能描述**:返回当前的格林威治时间戳。 - **参数说明**:无参数。 **2. `server_timezone()`** - **功能描述**:获取服务器的...
ECSHOPv2.5.0RELEASE [增加]增加拍卖的功能模块 [增加]增加批发的功能模块 [增加]增加销售专题活动的功能 [增加]增加办事处的功能 [增加]增加了推荐提成功能 [增加]增加多种优惠活动 ...[删除]去掉插件管理
2. **开放的插件机制**:支付和配送方式以插件形式存在,允许商家根据需要自由添加或更改支付方式和配送策略。同时,ECShop支持与Discuz、phpWind等常见论坛系统的会员整合,仅需简单后台配置即可实现。 3. **AJAX...
3:增加后台配送方式选择功能 2014.8.8 手机会员中心推荐分成,自动推荐生成二维码 2014.8.7 手机模板订单邮件微信、邮件通知;不用总守着电脑看单! 2014.8.5 更新 手机商品详情页显示库存! 2014.8.1 更新 ...