如果想在ecshop首页显示最新的评论,ecshop默认的功能并没有这个设置,需要我们二次开发系统文件,下面以ECSHOP2.7.2官方默认的模版为例,给大家讲解一下如何在ECSHOP首页显示最新的评论,如果你使用的其他版本的ecshop,应该可以按照本文的的方法修改对应的代码,实现这个功能。 预览效果
新建库文件由于ecshop默认的功能没有这个设置,所以我们必须自己新建一个库文件,在模版的lib文件夹下面,命名为index_comments.lbi,然后在文件中加入如下代码。 <?php if(!function_exists("get_comments")){ function get_comments($num) { $sql = 'SELECT * FROM '. $GLOBALS['ecs']->table('comment') . ' WHERE status = 1 AND parent_id = 0 and comment_type=0 '. ' ORDER BY add_time DESC'; if ($num > 0) { $sql .= ' LIMIT ' . $num; } //echo $sql; $res = $GLOBALS['db']->getAll($sql); $comments = array(); foreach ($res AS $idx => $row) { $comments[$idx]['add_time'] = $comments[$idx]['add_time'] = local_date ($GLOBALS['_CFG']['time_format'], $row['add_time']); $comments[$idx]['user_name'] = $row['user_name']; $comments[$idx]['content'] = $row['content']; $comments[$idx]['id_value'] = $row['id_value']; } return $comments; } } $GLOBALS['smarty']->assign('my_comments',get_comments(10)); // 10条数据 ?> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <!-- 最新评论__Begin --> <div class="box_2"> <h3><span>最新评论</span></h3> <div class="top10List clearfix"> <!--{foreach from=$my_comments item=comments}--> <ul class="clearfix"> <li style="padding:5px 10px;"> <a href="goods.php?id={$comments.id_value}" target="_blank"> {$comments.content|truncate:21:""}</a><br /> {$comments.add_time} </li> </ul> <!--{/foreach}--> </div> </div> 调用库文件在ECSHOP首页模板文件中,调用这个库文件,打开 themes/default/index.dwt 文件在 </div> <!--left end--> 上面增加一行调用代码 <!-- #BeginLibraryItem "/library/index_comments.lbi" --> <!-- #EndLibraryItem --> 登录商城后台,清理一下缓存,浏览首页即可看到在左下角显示了最新的评论内容。 (责任编辑:最模板) |