您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop首页上显示最新评论及评论内容和时间的方法
雨寒2023-12-03 23:16:31ecshop商城教程已有人查阅
导读本教程以“ECSHOP2.7.2 + 官方默认模板” 为例,其他模板大同小异,步骤一:将下面代码 ,并保存为一个库文件,文件名和保存路径为
本教程以“ECSHOP2.7.2 + 官方默认模板” 为例,其他模板大同小异,
步骤一:将下面代码 ,并保存为一个库文件,文件名和保存路径为: /themes/default/library/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 -->
清除一下缓存
本文标签:
很赞哦! ()
相关文章
随机图文
-
ecshop怎么新增单页面模板
【第一】在根目录创建一个php文件,命名为single.php[注:single.php乃我自定义的页面。【第二】在模板文件夹里面创建single.dwt文件[注:single.dwt跟single.php的页面一致,因为其代码里引用了该模板名称。] -
ecshop商品详细页获取所在商品分类ID及NAME的方法
问:怎么在ECSHOP的商品详细页面上获取该商品的 分类ID及NAME?答:打开 goods.php 文件,找到 -
ecshop首页发货通知配送方式订单号收货人发货单号
打开根目录下的index.php,找到:在下面添加一行:3、在使用模板里面的library目录里,新建一个post_list.lbi的文件 -
ecshop框架文件说明
include/init.....................//主函数文件 includes/inc_constant.php //常量,暂时没多大用 includes/cls_ecshop.php //基础类 includes/cls_error.php //用户级
留言与评论 (共有 条评论) |