您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程

ecshop商城后台商品列表怎么显示商品缩略图

岑刚飘2023-12-10 22:59:18ecshop商城教程已有人查阅

导读在商品列表这块有一个缩略图,在管理商品的时候会比较直观些。在此sql中,增加goods_thumb  这个字段。

在商品列表这块有一个缩略图,在管理商品的时候会比较直观些。
修改一:admin\includes\lib_goods.php  约898行

$sql = "SELECT goods_id, goods_name, goods_type, goods_sn, shop_price, goods_thumb, is_on_sale, is_best, is_new, is_hot, sort_order, goods_number, integral, " .
" (promote_price > 0 AND promote_start_date <= '$today' AND promote_end_date >= '$today') AS is_promote ".

在此sql中,增加goods_thumb  这个字段。
修改二:admin\templates\goods_list.htm
在约20行增加
<th>{$lang.goods_thumb}</th>
约37行增加

<td><input type="checkbox" name="checkboxes[]" value="{$goods.goods_id}" />{$goods.goods_id}</td>
<td><img src="../{$goods.goods_thumb}"></td>

$goods.goods_thumb 实际上就是缩略图的存放路径。
修改三:在admin/goods.php这个语言包内添加:  $_LANG['goods_thumb'] = '商品缩略图';  用于goods_list.html中。

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签