主题列表页面 |
|
文件:template\default\forum\forumdisplay_fastpost.htm |
查找: |
- <button {if !$guestpost}type="submit" {else}type="button" onclick="showWindow('login', 'member.php?mod=logging&action=login&guestmessage=yes')" {/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}-->
复制代码 |