您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop商品属性库存尺码联动的实现方法
乐菱2023-10-21 18:31:32ecshop商城教程已有人查阅
导读ECshop商品详细页面 颜 尺码 等规格和库存相连动仿淘宝的格式一样;一、先将test.gif文件 上传到你的模版文件夹images目录。
ECshop商品详细页面 颜 尺码 等规格和库存相连动仿淘宝的格式一样
一、先将test.gif文件 上传到你的模版文件夹images目录。
二、添加css文件 找到你的模版文件夹的style.css,在最后面加上一下代码:
找到:
一、先将test.gif文件 上传到你的模版文件夹images目录。
二、添加css文件 找到你的模版文件夹的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} -->
替换为:
<div class="catt">
<!-- {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} -->
</div>
四、继续在goods.dwt在changePrice函数上面添加js文件:
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 = '未设置';
}
}
五、添加php文件代码 打开/goods.php ,大约在71行下添加一下代码
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));
}
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop商品列表页显示商品库存方法
ecshop网店在很多时候,需要将商品的库存在ecshop商品列表里面显示,ecshop商品列表无非是首页,ecshop分类列表页,ecshop搜索页面和品牌显示页面。 -
ecshop二次开发教程步骤流程
Ecshop想必大家不会觉得陌生吧,大部分的B2C独立网店系统都用的是Ecshop系统,很受用户的喜爱,但是由于Ecshop模板自带有很多Ecshop的Logo和版权信息,和一些其他需要修改的地方 -
ecshop怎么做SEO优化
一、完全自定义页面titile,完全抛弃Ecshop定义的页面title格式:[产品名称]_[分类名]_[网店名称]-Powered by ECShop -
ecshop首页显示商品折扣率的实现方法
首先参考一下详细页添加折扣和节省的方法:打开程序根目录 includes\lib_goods.php 大概525行的位置
留言与评论 (共有 条评论) |