您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop商品列表页怎么增加品牌
怀萍2023-11-15 19:52:54ecshop商城教程已有人查阅
导读1、打开category.php文件;2、修改 themes/default/library/goods_list.lbi在你想要显示品牌的地方加入 {$goods.brand_name}
1、打开category.php文件
将
在你想要显示品牌的地方加入 {$goods.brand_name}
将
$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删除Powered by ecshop版权实例
去掉头部TITLE部分的ECSHOP演示站 Powered by ecshop 前者在后台商店设置 - 商店标题修改 后者打开includes/lib_main.php -
ecshop伪静态修改生成纯静态页面设置方法
伪静态已经基本上可以满足大部分人的需求,如果不满足的还可以根据前面的一篇文章对重写规则进行修改,以满足自己的需求。但是本文所要描述的是 -
ecshop商品与文章删除时同时删除商品图片
ECSHOP删除文章或从回收站删除商品,文章内容和商品描述中的图片(位于/images/upload/Image目录)无法删除,时间长了会占用相当大的空间 -
ecshop模板css兼容问题_height:auto火狐下无效的解决方法
只是在模板修改中会碰到此类问题,在任何的DIV+CSS页面制作中都会碰到。在帮朋友制作ECSHOP模板的时候就遇到了这个兼容问题。
留言与评论 (共有 条评论) |