您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop商品属性库存仿淘宝属性库存联动显示的方法
碧彤2024-01-16 22:36:42ecshop商城教程已有人查阅
导读ECSHOP有个货品功能,就是可以单独给商品的尺码、颜 设置库存。但是商品详情页却只能显示部库存。如果有个属 无货了,也不知道。本ECSHOP教程即可实现
ECSHOP有个货品功能,就是可以单独给商品的尺码、颜 设置库存。但是商品详情页却只能显示部库存。如果有个属 无货了,也不知道。本ECSHOP教程即可实现直接显示属 库存。是目前最完整最 的。
网上流传的免费教程有两个问题。
1、网上提供的教程无出现库存显示无效的情况,这是因为与jquery不兼容。
2、打开商品页面时,默认是选 中 个颜 的,但却显示总库存,造成误以为是 个颜 的库存。如果能打开页面就显示 个颜 库存就好了。
代码号提供本ECSHOP教程 解决这两个问题。
步:
下载选中小图标 test.gif ,保存路径:themes/default/images/test.gif 本教程最后面有下载。
第二步:
在模板样式中添加如下代码:如 themes/default/style.css
打开goods.dwt文件 替换循环文件
查找:
同样在本文件中 head区添加以下JS代码:
打开goods.php ,大约在70行下添加一下代码:
if (!empty($_REQUEST['act']) && $_REQUEST['act'] == 'get_products_info'){ include('includes/cls_json.php'); $json = new JSON; // $res = array('err_msg' => '', 'result' => '', 'qty' => 1); $spce_id = $_GET['id']; $goods_id = $_GET['goods_id']; $row = get_products_info($goods_id,explode(",",$spce_id)); //$res = array('err_msg'=>$goods_id,'id'=>$spce_id); die($json->encode($row)); }
至此,已经可以显示属 库存了,下面解决打开页面默认显示总库存的问题。
仍然在 goods.dwt 文件中查找:
onload = function(){ changePrice(); fixpng(); try { onload_leftTime(); } catch (e) {} }
修改为:
onload = function(){ changePrice();
changeKucun();//这里是添加的
fixpng();
try { onload_leftTime(); }
catch (e) {} } //默认就显示个属性库存
function changeKucun() { var frm=document.forms['ECS_FORMBUY']; spec_arr = getSelectedAttributes(frm); Ajax.call('goods.php?act=get_products_info', 'id=' + spec_arr+ '&goods_id=' + goods_id, shows_number, 'GET', 'JSON'); }
OK了。
选中小图标下载:
网上流传的免费教程有两个问题。
1、网上提供的教程无出现库存显示无效的情况,这是因为与jquery不兼容。
2、打开商品页面时,默认是选 中 个颜 的,但却显示总库存,造成误以为是 个颜 的库存。如果能打开页面就显示 个颜 库存就好了。
代码号提供本ECSHOP教程 解决这两个问题。
步:
下载选中小图标 test.gif ,保存路径:themes/default/images/test.gif 本教程最后面有下载。
第二步:
在模板样式中添加如下代码:如 themes/default/style.css
catt{width: ;height:auto;overflow:hidden;padding-bottom:5px;} .catt a{border: #7E7E7E 1px solid; text-align: center; background-color: #fff; margin-left:5px;margin-top:6px;padding-left: 10px;padding-right: 10px;display: block; white-space: nowrap;color:#000; text-decoration:none; float:left;} .catt a:hover {border:#ED0036 2px solid; margin: -1px; margin-left:4px;margin-top:5px;} .catt a:focus {outline-style:none;} .catt .cattsel {border:#ED0036 2px solid; margin: -1px;background: url("images/test.gif") no-repeat bottom right; margin-left:4px;margin-top:5px;} .catt .cattsel a:hover {border: #ED0036 2px solid;margin:-1px;background: url("images/test.gif") no-repeat bottom right;}
第三步:打开goods.dwt文件 替换循环文件
查找:
<!-- {foreach from=$spec.values item=value key=key} --> <label for="spec_value_{$value.id}"> <input type="radio" name="spec_{$spec_key}" value="{$value.id}" id="spec_value_{$value.id}" {if $key eq 0}checked{/if} onclick="changePrice()" /> {$value.label} [{if $value.price gt 0}{$lang.plus}{elseif $value.price lt 0} {$lang.minus}{/if} {$value.format_price|abs}] </label><br /> <!-- {/foreach} -->
替换为:
<!-- {foreach from=$spec.values item=value key=key} --> <a {if $key eq 0}class="cattsel"{/if} onclick="changeAtt(this,{$value.id},{$goods.goods_id})" href="javascript:;" name="{$value.id}" title="[{if $value.price gt 0}{$lang.plus}{elseif $value.price lt 0}{$lang.minus}{/if} {$value.format_price|abs}]">{$value.label}<input style="display:none" id="spec_value_{$value.id}" type="radio" name="spec_{$spec_key}" value="{$value.id}" {if $key eq 0} checked{/if} /></a> <!-- {/foreach} -->
第四步:同样在本文件中 head区添加以下JS代码:
<script type="text/javascript"> function changeAtt(t,a,goods_id) { t.lastChild.checked='checked'; for (var i = 0; i<t.parentNode.childNodes.length;i++) { if (t.parentNode.childNodes[i].className == 'cattsel') { t.parentNode.childNodes[i].className = ''; } } t.className = "cattsel"; var formBuy = document.forms['ECS_FORMBUY']; spec_arr = getSelectedAttributes(formBuy); Ajax.call('goods.php?act=get_products_info', 'id=' + spec_arr+ '&goods_id=' + goods_id, shows_number,'GET', 'JSON'); changePrice(); } function shows_number(result){ if(result.product_number !=undefined){ //这里我把$换成了document.getElementById,因为ecshop有时候不兼容jquery //$('shows_number').innerHTML = result.product_number+'件'; document.getElementById('shows_number').innerHTML = result.product_number+'件'; }else{ document.getElementById('shows_number').innerHTML = '未设置'; //$('shows_number').innerHTML = '未设置'; } } </script>
第五步:打开goods.php ,大约在70行下添加一下代码:
if (!empty($_REQUEST['act']) && $_REQUEST['act'] == 'get_products_info'){ include('includes/cls_json.php'); $json = new JSON; // $res = array('err_msg' => '', 'result' => '', 'qty' => 1); $spce_id = $_GET['id']; $goods_id = $_GET['goods_id']; $row = get_products_info($goods_id,explode(",",$spce_id)); //$res = array('err_msg'=>$goods_id,'id'=>$spce_id); die($json->encode($row)); }
至此,已经可以显示属 库存了,下面解决打开页面默认显示总库存的问题。
仍然在 goods.dwt 文件中查找:
onload = function(){ changePrice(); fixpng(); try { onload_leftTime(); } catch (e) {} }
修改为:
onload = function(){ changePrice();
changeKucun();//这里是添加的
fixpng();
try { onload_leftTime(); }
catch (e) {} } //默认就显示个属性库存
function changeKucun() { var frm=document.forms['ECS_FORMBUY']; spec_arr = getSelectedAttributes(frm); Ajax.call('goods.php?act=get_products_info', 'id=' + spec_arr+ '&goods_id=' + goods_id, shows_number, 'GET', 'JSON'); }
OK了。
选中小图标下载:
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop商品页调用热销商品的教程
在goods.php里面加了$smarty->assign('hot_goods',get_recommend_goods('hot -
ecshop在线调查,ecshop会员访问在线调查
ECSHOP在线调查。进入网店后台,点击左侧导航栏中的文章管理 -> 在线调查。一 调查主题:填写调查主题。二 调查选项 -
ecshop缓存清理关闭的方法
ECSHOP的缓存存放在templates/caches/文章夹下,时间长了这个文件夹就会非常庞大,拖慢网站速度。还有很多情况我们不需要他的缓存。本文介绍禁用ECSHOP缓存的方法。 -
ecshop缓存自动清除的方法
今天有人问到,ecshop如何自动清除缓存,我们ECSHOP模板屋的技术给出解决办法:1、在ecs_shop_config表中插入一条数据2、找到includes/init.php 这个文件,在文件的最后增加下面的代码:
留言与评论 (共有 条评论) |