蓝忧无泪 发表于 2009-7-2 20:23:23

如何隐藏或删除 “收藏 分享 评分” 这三个图标[原创]

备份并打开文件:
/templates/default/viewthread_node.htm

搜索:useraction   或   ajax_favorite

找到这段代码删除,保存更新缓存就行了:<div class="useraction">
                                                <a id="ajax_favorite" {if $discuz_uid}href="my.php?item=favorites&amp;tid=$tid"

onclick="ajaxmenu(event, this.id, 3000, 0)"{else}href="logging.php?action=login" onclick="floatwin('open_login', this.href, 600, 400);return false;"{/if}>{lang

thread_favorite}</a>
                                                <a id="emailfriend" href="misc.php?action=emailfriend&amp;tid=$tid" onclick="floatwin

('open_emailfriend', this.href, 250, {if $discuz_uid}380{else}200{/if});return false;">{lang thread_email_friend}</a>
                                                <a id="ratelink" {if $discuz_uid}href="misc.php?action=rate&amp;tid=$tid&amp;pid=$post"

onclick="floatwin('open_rate', this.href, 250, 270);return false;"{else}href="logging.php?action=login" onclick="floatwin('open_login', this.href, 600, 400);return

false;"{/if}>{lang rate}</a>
                                        </div> 如果用的是别的风格就到对应风格下找到这文件,搜索的代码可能不同,但大体是一样的


不过,建议不要删除的好,可能以后又想用到,那么,你可以用注标把它隐藏,格式:

<!--要删除的代码-->
如:<!--隐藏分享图标////<div class="useraction">
                                                <a id="ajax_favorite" {if $discuz_uid}href="my.php?item=favorites&amp;tid=$tid"

onclick="ajaxmenu(event, this.id, 3000, 0)"{else}href="logging.php?action=login" onclick="floatwin('open_login', this.href, 600, 400);return false;"{/if}>{lang

thread_favorite}</a>
                                                <a id="emailfriend" href="misc.php?action=emailfriend&amp;tid=$tid" onclick="floatwin

('open_emailfriend', this.href, 250, {if $discuz_uid}380{else}200{/if});return false;">{lang thread_email_friend}</a>
                                                <a id="ratelink" {if $discuz_uid}href="misc.php?action=rate&amp;tid=$tid&amp;pid=$post"

onclick="floatwin('open_rate', this.href, 250, 270);return false;"{else}href="logging.php?action=login" onclick="floatwin('open_login', this.href, 600, 400);return

false;"{/if}>{lang rate}</a>
                                        </div>////隐藏分享图标--> 以后要用,只要把标注除了就行了~

另外,没记错的话,PHP代码的话标注格式是:/* 要删除的代码 */
页: [1]
查看完整版本: 如何隐藏或删除 “收藏 分享 评分” 这三个图标[原创]