找到 template/default/forumpost_editor_attribute.htm 文件的 168 行

  1. <!--{if $_G['group']['allowanonymous']}--><label for="isanonymous"><input type="checkbox" name="isanonymous" id="isanonymous" value="1" />{lang post_anonymous}</label><!--{/if}-->

修改为

  1. <!--{if $_G['group']['allowanonymous']}--><label for="isanonymous"><input type="checkbox" name="isanonymous" id="isanonymous" value="1" checked="checked" />{lang post_anonymous}</label><!--{/if}-->

然后再找到 174 行

  1. <label for="hiddenreplies"><input type="checkbox" name="hiddenreplies" id="hiddenreplies" {if $thread['hiddenreplies']} checked="checked"{/if} value="1">{lang hiddenreplies}</label>

修改为

  1. <label for="hiddenreplies"><input type="checkbox" name="hiddenreplies" id="hiddenreplies"   checked="checked" value="1">{lang hiddenreplies}</label>

最后再更新一下缓存即可