后台商品列表显示对应商品评论管理功能二次开发:

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
复制代码 |