|
备份并打开文件:
/templates/default/viewthread_node.htm
搜索:useraction 或 ajax_favorite
找到这段代码删除,保存更新缓存就行了:- <div class="useraction">
- <a id="ajax_favorite" {if $discuz_uid}href="my.php?item=favorites&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&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&tid=$tid&pid=$post[pid]"
- 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&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&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&tid=$tid&pid=$post[pid]"
- 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代码的话标注格式是: /* 要删除的代码 */ |
|