ECSHOP商品列表显示对应商品评论管理功能

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

ECSHOP后台商品列表显示对应商品评论管理功能二次开发: admin/template/goods_list.htm中找到      {if $add_handler}         |         {foreach from=$add_handler item=handler}                 {/foreach}       {/if}   它的下面加入   修改admin/comment_manage.php找到$where = (!empty($filter['keywords'])) ? " AND content LIKE '%" . mysql_like_quote($filter['keywords']) . "%' " : '';   它的下面加入    /** by neo **/   $filter['goods_id'] = (is_numeric($_REQUEST['goods_id']) && $_REQUEST['goods_id'] > 0) ? intval($_REQUEST['goods_id']) : 0;   if($filter['goods_id'] > 0) {   $goods_id = intval($_REQUEST['goods_id']);   $where .= " AND id_value = '$goods_id' ";   }   /** by neo **/另外为了删除后跳转回当前商品的评论修改模板 admin/templates/comment_list.htm找到   它的下面加入修改admin/comment_manage.php  2处$link[] = array('text' => $_LANG['back_list'], 'href' => 'comment_manage.php?act=list'        修改成$link[] = array('text' => $_LANG['back_list'], 'href' => 'comment_manage.php?act=list'.'&goods_id='.$_REQUEST['goods_id']);//by neo