您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop添加独立商品评论页面可分页显示
碧彤2024-01-16 21:58:00ecshop商城教程已有人查阅
导读ECSHOP添加独立商品评论页面可分页显示通过以下方法可以实现ecshop使用一个单独立的页面来显示所有的评论,并在评论中显示会员 评论的商品 评论内容等。
ECSHOP添加独立商品评论页面可分页显示通过以下方法可以实现ecshop使用一个单独立的页面来显示所有的评论,并在评论中显示会员 评论的商品 评论内容等。
教程开始:
首先建立三个文件,testp.php test.dwt test.lbi,test.php 就是最终的评论页面。
在test.php中加入以下内容
test.lbi 中写入以下内容
"游客""{$comments.user_name}"在{$comments.add_time}
评论
访问test.php就可以看到评论已经显示并可以分页了,这里只是介绍了程序的实现方法,模板中并未引入头部和底部的模板也没有为评论显示设计样式。在实际使用时可根据具体的网站来来设计评论显示的样式。
教程开始:
首先建立三个文件,testp.php test.dwt test.lbi,test.php 就是最终的评论页面。
在test.php中加入以下内容
$page = isset($_REQUEST['page']) && intval($_REQUEST['page']) > 0 ? intval($_REQUEST['page']) : 1;$size = 15;
$count = get_comments_count();
$max_page = ($count> 0) ? ceil($count / $size) :
1;
if ($page > $max_page)
{
$page = $max_page;
}
$goodslist = get_comments($size, $page);
$smarty->assign('my_comments',
$goodslist); assign_pager( 'test', '', $count, $size, '', $order, $page,'', '', '', '', '','', '', ''); assign_dynamic('test'); $smarty->display('test.dwt'); function get_comments($size, $page){ $display = $GLOBALS['display'];
/* 获得评论列表 */
$sql = 'SELECT a.*,b.goods_id,b.goods_name,user_name FROM '. $GLOBALS['ecs']->table('comment') . ' AS a,'. $GLOBALS['ecs']->table('goods') .'AS b WHERE a.status = 1 AND a.parent_id = 0 and a.comment_type=0 and a.id_value=b.goods_id '. ' ORDER BY a.add_time DESC';
$res = $GLOBALS['db']->selectLimit($sql, $size, ($page - 1) * $size);
$arr = array();
while ($row = $GLOBALS['db']->fetchRow($res))
{
$arr[$row['comment_id']]['type'] = $row['goods_type'];
$arr[$row['comment_id']]['add_time'] = local_date($GLOBALS['_CFG']['time_format'], $row['add_time']);
$arr[$row['comment_id']]['content'] = $row['content'];
$arr[$row['comment_id']]['id_value'] = $row['id_value']; $arr[$row['comment_id']]['goods_name'] = $row['goods_name']; $arr[$row['comment_id']]['user_name'] = $row['user_name']; } return $arr;
}
function get_comments_count(){
return
$GLOBALS['db']->getOne('SELECT COUNT(*) FROM ' . $GLOBALS['ecs']->table('comment'));}?>
test.dwt中写入以下内容test.lbi 中写入以下内容
"游客""{$comments.user_name}"在{$comments.add_time}
评论
<a style="width:107;" href="goods-{$comments.id_value}.html" >"{$comments.goods_name}":
<div style="color:#f92ab4;">"{$comments.content}"
然后修改 includes\lib_main.php 大约509 后面加入以下代码然后修改 includes\lib_main.php 大约509 后面加入以下代码
case 'test':
$uri_args = array('page'=>$page, 'order' => $order);
break;
最后把 test.php放入站点根目录,test.dwt放入模板目录,test.lbi放入对应模板的库项目目录。访问test.php就可以看到评论已经显示并可以分页了,这里只是介绍了程序的实现方法,模板中并未引入头部和底部的模板也没有为评论显示设计样式。在实际使用时可根据具体的网站来来设计评论显示的样式。
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop邮编实现可以使用输入字母的方法
ecshop 默认情况下邮编只能填写数字,但是国外的很多城市邮编其实是数字和字母组合的,这个问题其实解决方法也很简单。 -
ecshop商品页商品详细描述内容调用商品相册图片代码的方法
代码号ecshop商品详细描述内容调用商品相册图片代码,该修改方法让用户体验更好,特别是用户产品描述文字不多的情况下,直接让相册里面图片同时显示在产品描述里面可以让 -
ecshop文章分类页面怎么调用当前文章分类名称
1.打开根目录的article_cat.php的文件,在大概80行左右,找到;3.在模板页面调用文章分类格式:{$cat_name}------(文章分类名) -
ecshop4.15安装教程实例流程步骤图解教程
ecshop4.1.5商城系统安装前准备工作:第一步:最新ecshop4.1.5;第二步:服务器-ecshop安装环境配置本次ecshop4.1.5安装按win系统Apache为例:
留言与评论 (共有 条评论) |