首页 > 网站 > 建站经验 > 正文

修改ECSHOP,隐藏帮助中心文章页的评论功能

2024-04-25 20:42:39
字体:
来源:转载
供稿:网友

个人认为帮助中心分类下的文章没有必要给它加个评论功能,

下面我们来去掉它

第一步:

首先我们打开 /article.php 文件

找到

$smarty->assign('comment_type', 1);

在它下面增加一行代码

$smarty->assign('topcatid',array_pop($catlist));

第二步:

然后我们来修改 /themes/default/library/comments.lbi

找到

{insert_scripts files='transport.js,utils.js'}

<div id="ECS_COMMENT"> {* ECSHOP 提醒您:动态载入comments_list.lbi,显示评论列表和评论表单 *}{insert name='comments' type=$type id=$id}</div>

将它修改为

{if $topcatid neq 1}

{insert_scripts files='transport.js,utils.js'}

<div id="ECS_COMMENT"> {* ECSHOP 提醒您:动态载入comments_list.lbi,显示评论列表和评论表单 *}{insert name='comments' type=$type id=$id}</div>

{/if}

这样就可以了,去重新刷新一下帮助中心的文章页,看是不是没有评论框了。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表