ECSHOP首页显示最新评论修改教程

2016-06-13 13:05 来源:www.chinab4c.com 作者:ecshop专家

各位ECSHOP网店系统用户大家好,欢迎来到ECSHOP教程网图文教程,今天为大家详细解说一下ECSHOP首页显示最新评论修改教程。 ECSHOP教程网ECSHOP视频教程也再不断的完善与跟进,期待大家的关注!希望在ecshop的道路上,ecshop教程网与您一路同行! 第一步: 将下面代码复制,并保存为一个库文件,文件名和保存路径为: /themes/default/library/index_comments.lbi 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条数据 ?>         

  

最新评论

 
       
               
  •    {$comments.content|truncate:21:""}
     {$comments.add_time}  
  •  
       
 
  第二步:   在ECSHOP首页模板文件中,调用这个库文件   打开 themes/default/index.dwt 文件,   在
  上面增加一行调用代码       清除一下缓存