在购物车里显示商品简单描述的方法

2016-07-07 15:04 来源:www.chinab4c.com 作者:ecshop专家

最近看到有朋友有这方面的需求,就整理了一下,写出来,供有同样需求的朋友备用
1、这里说的商品简单描述,不是商品的详细信息,而是后台编辑商品时在“其他信息”标签栏填写的那个“商品简单描述”,即goods_brief字段
2、修改lib_order.php文件的get_cart_goods()函数部分
  1. $goods_thumb = $GLOBALS['db']->getOne("SELECT `goods_thumb` FROM " . $GLOBALS['ecs']->table('goods') . " WHERE `goods_id`='{$row['goods_id']}'");
  2. $row['goods_thumb'] = get_image_path($row['goods_id'], $goods_thumb, true);
复制代码
修改为
  1. $goods_thumb = $GLOBALS['db']->getRow("SELECT `goods_thumb`,`goods_brief` FROM " . $GLOBALS['ecs']->table('goods') . " WHERE `goods_id`='{$row['goods_id']}'");
  2. $row['goods_thumb'] = get_image_path($row['goods_id'], $goods_thumb['goods_thumb'], true);
  3. $row['goods_brief']=$goods_thumb['goods_brief'];
复制代码

3、在模板文件(flow.dwt)合适位置调用即可:
{$goods.goods_brief}

回答:
支持一下

支持一下

为什么我改了后不管用呀