如何在ECSHOP购物车页面显示商品简单描述

2,586 人次阅读
没有评论

共计 706 个字符,预计需要花费 2 分钟才能阅读完成。

最近看到有朋友有这方面的需求,就整理了一下,写出来,供有同样需求的朋友备用

1、这里说的商品简单描述,不是商品的详细信息,而是后台编辑商品时在“其他信息”标签栏填写的那个“商品简单描述”,即goods_brief字段

2、修改lib_order.php文件的get_cart_goods()函数部分

[php]

$goods_thumb = $GLOBALS[‘db’]->getOne("SELECT `goods_thumb` FROM " . $GLOBALS[‘ecs’]->table(‘goods’) . " WHERE `goods_id`='{$row[‘goods_id’]}’");
$row[‘goods_thumb’] = get_image_path($row[‘goods_id’], $goods_thumb, true);
[/php]
修改为
[php]
$goods_thumb = $GLOBALS[‘db’]->getRow("SELECT `goods_thumb`,`goods_brief` FROM " . $GLOBALS[‘ecs’]->table(‘goods’) . " WHERE `goods_id`='{$row[‘goods_id’]}’");
$row[‘goods_thumb’] = get_image_path($row[‘goods_id’], $goods_thumb[‘goods_thumb’], true);
$row[‘goods_brief’]=$goods_thumb[‘goods_brief’];
[/php]
3、在模板文件(flow.dwt)合适位置调用即可:
{$goods.goods_brief}

正文完
 0