:ecshop后台如何增加统计代码

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家

91:ecshop模板中$smarty.get.act确实有用。
回答:例子就是这样,效果不错location.href += 'order.php?act={$smarty.get.act}&order_id={$smarty.get.order_id}&step={$smarty.get.step}&address_id=' + addressId;
92:ecshop中的自定义导航程序,出自哪个ecshop函数
回答:includes/lib_main.php中的get_navigator($ctype = '', $catlist = array())
93:如何手动设置ecshop缓存时间
回答:includes/cls_templates.php里面设置var $cache_lifetime = 3600; // 缓存更新时间, 默认 3600 秒的值得
94:如何优化ecshop手机号码格式验证
回答:使用该方法
var reg =/^[1]([3][0-9]{1}|50|53|59|58|56|86|80|89|87|88|85|86|55|51|52|57)[0-9]{8}$/;
http://xinpjing771.com
http://bshjylec791.com
http://huanggylec561.com
http://huanlgylec751.com
http://jingztyl821.com

reg.test(mobile_phone)
95:做好了的快递插件放什么位置
回答:\includes\modules\shipping这个目录就是存储配送插件目录的
96:会员注册怎么送积分
回答:商店设置->基本设置->会员注册赠送积分
97:EC如何验证注册email是否重复
回答:js/user.js的function checkEmail(email)方法通过调用ajax验证
98:ecshop模板中如何赋值给新变量
回答:{assign var="cat_goods" value="x"}
99:ecshop订单表里面。哪个字段是已经付款金额
回答:formated_money_paid字段是用来控制已付金额的
100:ecshop后台如何增加统计代码
回答:后台->系统设置->商店设置->基本设置->统计代码.在这里可以放统计代码
js:输入0自动变成1onkeyup="this.value=this.value.replace(/\D/g,'');if(this.value==0) this.value=1;"