ecshop二次开发评论列表调用商品信息
2010-07-16 10:52 来源:www.chinab4c.com 作者:admin
ecshop评论中调用商品图片和商品名称。
1:goods.php中
$smarty->assign('goods_com',$info);
2:includes/lib_goods.php的function get_goods_info($goods_id)
$row['url'] = build_uri('goods', array('gid'=>$row['goods_id']), $row['goods_name']);
3:includes/lib_main.php
function assign_comment($id, $type, $page = 1)
修改成
$info = $GLOBALS['db']->getRow("select goods_id ,goods_name,goods_thumb from ".$GLOBALS['ecs']->table('goods')." where goods_id = '$id'");
$info['goods_thumb'] = get_image_path($id, $info['goods_thumb'],true);
$info['url'] = build_uri('goods', array('gid' => $id), $info['goods_name']);
$GLOBALS['smarty'] ->assign('goods_com',$info);
4:includes/lib_insert.php
function insert_comments($arr)
$info = $GLOBALS['db']->getRow("select goods_id ,goods_name,goods_thumb from ".$GLOBALS['ecs']->table('goods')." where goods_id = '$arr[id]'");
$info['goods_thumb'] = get_image_path($arr[id], $info['goods_thumb'],true);
$info['url'] = build_uri('goods', array('gid' => $arr['id']), $info['goods_name']);
$GLOBALS['smarty'] ->assign('goods_com',$info);
以上修改就完成了ecshop评论中的ecshop ajax数据调用中实现商品信息的调用。
最近更新
常用插件
- ecshop降价通知登记插件
ecshop降价通知登记插件,主要是为了方便某些客户,对商品价格要求比...
- ecshop购物车功能改进[插件
ecshop购物车功能改进[插件套餐]主要是我们最近开发工作和开发项目中。...
- ecshop分类树中统计商品数
最近忙于开发其他项目,在不少朋友不断要求和催促的情况下,做出了该小...
- ecshop红包修改成满多少减
我们在长期使用ecshop的时候,我们可以发现。ecshop的红包是一个非常强...
- ecshop通用红包编码
很多时候,为了结合促销,必须扩展一下ecshop的红包功能。ecshop的红包...