关于ecshop详细页增加评论数量:
打开includes/lib_insert.php 文件:
在最下面增加一个函数
/**
* 调用评论信息条数
*/
function insert_comments_count($arr)
{
$count=$GLOBALS['db']->getOne('SELECT COUNT(*) FROM '.
$GLOBALS['ecs']->table('comment')."WHERE id_value='$arr[id]'".
"AND comment_type='$arr[type]' AND status = 1 AND parent_id = 0");
return $count;
}
打开themes/您的模板目录/goods.dwt 文件:
在你想显示商品评论数量的位置加入下面代码
评论数:{insert name=comments_count type=$type id=$id}
建站咨询热线
18503087281