您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程

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

谷丝2024-01-01 00:50:50ecshop商城教程已有人查阅

导读ECSHOP后台商品列表显示对应商品评论管理功能二次开发:admin/template/goods_list.htm中找到

ECSHOP后台商品列表显示对应商品评论管理功能二次开发:admin/template/goods_list.htm中找到
{if $add_handler}
|
{foreach from=$add_handler item=handler}
<a href="{$handler.url}&goods_id={$goods.goods_id}" title="{$handler.title}"><img src="images/{$handler.img}" width="16" height="16" border="0" /></a>
{/foreach}
{/if}
它的下面加入
<a href="comment_manage.php?act=list&goods_id={$goods.goods_id}" title="评论管理"><img src="images/icon_title.gif" width="14" height="13" border="0" alt="评论管理"></a><!-- by neo -->
修改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
找到
<form method="POST" action="comment_manage.php?act=batch_drop" name="listForm" onsubmit="return confirm_bath()">
它的下面加入
<input name="goods_id" value="{$filter.goods_id}" type="hidden"><!-- by neo -->
修改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

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签