1、首先修改 category.php 文件
将
$sql = 'SELECT g.goods_id, g.goods_name, g.goods_name_style, g.market_price, g.is_new, g.is_best, g.is_hot, g.shop_price AS org_price, ' .
修改为
$sql = 'SELECT g.goods_id, g.goods_name, b.brand_name , g.goods_name_style, g.market_price, g.is_new, g.is_best, g.is_hot, g.shop_price AS org_price, ' .
找到
"ON mp.goods_id = g.goods_id AND mp.user_rank = '$_SESSION[user_rank]' " .
在它下面增加一行
" LEFT JOIN ". $GLOBALS['ecs']->table('brand') . " AS b on b.brand_id = g.brand_id " .
继续,找到
$arr[$row['goods_id']]['name'] = $row['goods_name'];
在它下边增加一行
$arr[$row['goods_id']]['brand_name'] = $row['brand_name'];
2、接下来打开模板库文件 /themes/default/library/goods_list.lbi
想在哪显示品牌就在哪加入下面的代码
{$goods.brand_name}
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
相关文章
ecshop出现Warning: Invalid argument supplied for foreach()错误2019-02-26
Ecshop 分类页产品列表不同分类调用不同产品属性2018-03-08
ECSHOP商品属性调用到任意页面方法2018-03-01
Ecshop 分类页品牌调用商品数量2018-02-28
ecshop调整默认商品图片排序2018-02-27
ecshop各个页面调用商品销售量方法2016-09-23
ecshop mobile首页循环显示分类及分类下商品2016-09-23
ecshop后台添加虚拟销量以及前台显示销量2016-09-22
ecshop重新导入数据库,管理员和密码正确登录失败2016-09-21
ecshop 共享首页推荐商品调用商品品牌方法2015-08-06