手动阀

Good Luck To You!

ecshop商品列表页显示每个商品的品牌

在ECSHOP商品列表页显示每个商品的品牌,可以通过以下步骤实现:

ecshop商品列表页显示每个商品的品牌

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, ' .

在它下面增加一行"LEFT JOIN ". $GLOBALS['ecs']->table('brand') . " AS b on b.brand_id = g.brand_id " .

ecshop商品列表页显示每个商品的品牌

继续,找到$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商品列表页显示每个商品的品牌

通过上述步骤,可以在ECSHOP商品列表页显示每个商品的品牌,需要注意的是,这种修改方法虽然简单,但它不是ECSHOP官方支持的方式,可能会对未来的系统升级造成一定的影响,理想情况下,应该通过扩展或插件来实现。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

Powered By Z-BlogPHP 1.7.3

Copyright Your WebSite.Some Rights Reserved.