本帖最后由 小白 于 2011-2-21 20:33 编辑
主题列表页面
文件:template\default\forum\forumdisplay_fastpost.htm
查找:
- <button {if !$guestpost}type="submit" {else}type="button" {/if}name="topicsubmit" id="fastpostsubmit" value="topicsubmit" tabindex="13" class="pn"><strong>{lang post_newthread}</strong></button>
复制代码
在下面增加:
- <!--{if $_G['uid']}-->
- <!--{if $_G['group']['allowanonymous']}--><input type="checkbox" name="isanonymous" id="isanonymous" class="pc" value="1" /><label for="isanonymous">{lang post_anonymous}</label><!--{/if}-->
- <!--{else}-->
- <!--{if $_G['group']['allowanonymous'] || (!$_G['group']['allowanonymous'] && $orig['anonymous'])}--><input type="checkbox" name="isanonymous" id="isanonymous" class="pc" value="1" {if $orig['anonymous']}checked="checked"{/if} /><label for="isanonymous">{lang post_anonymous}</label><!--{/if}-->
- <!--{/if}-->
复制代码
-------------------------------------------------------------------------------------------------
主题阅读页面
文件:template\default\forum\viewthread_fastpost.htm
查找:
- <!--{if $_G['gp_ordertype'] != 1 && empty($_G[gp_from])}-->
- <input id="fastpostrefresh" type="checkbox" class="pc" /> <label for="fastpostrefresh">{lang post_fastreply_gotolast}</label>
- <script type="text/javascript">if(getcookie('fastpostrefresh') == 1) {$('fastpostrefresh').checked=true;}</script>
- <!--{/if}-->
复制代码
后面增加:
- <!--{if $_G['uid']}-->
- <!--{if $_G['group']['allowanonymous']}--><input type="checkbox" name="isanonymous" id="isanonymous" class="pc" value="1" /><label for="isanonymous">{lang post_anonymous}</label><!--{/if}-->
- <!--{else}-->
- <!--{if $_G['group']['allowanonymous'] || (!$_G['group']['allowanonymous'] && $orig['anonymous'])}--><input type="checkbox" name="isanonymous" id="isanonymous" class="pc" value="1" {if $orig['anonymous']}checked="checked"{/if} /><label for="isanonymous">{lang post_anonymous}</label><!--{/if}-->
- <!--{/if}-->
复制代码
|