1.在根目录下找 category.php , 查找
$arr[$row['goods_id']]['url']
在底下添加以下代码:
function insert_selectNum($arr){
$goods_id = $arr["goods_id"];
$sql = 'select INULLSUM(g.goods_number),0)' .
'FROM' . $GLOBALS['ecs']->table('order_info').'AS o,' .
$GLOBALS['ecs']->table('order_goods') . ' AS g ' .
"where o.order_id = g.order_id and g.goods_id = '$goods_id'" . $ext;
$sales_count_num = $GLOBALS['db']->getOne($sql);
//echo $sql."==== 测试是否有数据输入";
return $sales_count_num;
}
2.在themes\default\library 目录下找 goods_list.lbi 查找
修改前请注意备份源文件。
==========================================================================================
ecshop商品详细页显示已售商品数量和评论数量
ecshop增加已售数量和评论数量很简单,步骤如下,原创文章转载请指明同盟者网络http://blog.sina.com.cn/tomener
1.在ecshop程序goods.php页面最下面加入这两个函数
function get_buy_sum($goods_id)
{
}
function get_comment_num($goods_id)
}
2.在ecshop程序goods.php中加入
$smarty->assign('buy_num',get_buy_sum($goods_id));
$smarty->assign('comment_num',get_comment_num($goods_id));
在$smarty->display('goods.dwt',
3.ecshop中goods.dwt模板中加这个,大概在221行