首页 > 网站 > 建站经验 > 正文

在ECSHOP购物车页面 显示商品简单描述的修改教程

2024-04-25 20:31:59
字体:
来源:转载
供稿:网友

ecshop购物车页面显示商品简单描述的方法:

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

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

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

$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);

修改为

$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'];

3、在ecshop模板文件(flow.dwt)合适位置调用即可:

{$goods.goods_brief}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表