|
|
本帖最后由 民审-M 于 2018-5-2 23:05 编辑
找到\template\default\forum\post_editor_attribute.htm文件的168行
- <!--{if $_G['group']['allowanonymous']}--><label for="isanonymous"><input type="checkbox" value="1" />{lang post_anonymous}</label><!--{/if}-->
复制代码
修改为
- <!--{if $_G['group']['allowanonymous']}--><label for="isanonymous"><input type="checkbox" value="1" checked="checked" />{lang post_anonymous}</label><!--{/if}-->
复制代码
然后再找到174行
- <label for="hiddenreplies"><input type="checkbox"{if $thread['hiddenreplies']} checked="checked"{/if} value="1">{lang hiddenreplies}</label>
复制代码
修改为
- <label for="hiddenreplies"><input type="checkbox" checked="checked" value="1">{lang hiddenreplies}</label>
复制代码
最后再更新一下缓存即可,
演示效果:
|
|