本帖最后由 身后有余忘缩手 于 2025-5-11 18:22 编辑
方法1.在FTP中
template\default\forum\post_editor_attribute.htm
找到
[AppleScript] 纯文本查看 复制代码 <input type="checkbox" name="allownoticeauthor" id="allownoticeauthor" class="pc" value="1"{if $allownoticeauthor} checked="checked"{/if} />
替换为
[AppleScript] 纯文本查看 复制代码 <input type="checkbox" name="allownoticeauthor" id="allownoticeauthor" class="pc" value="1"{if $allownoticeauthor}{/if} />
即将 checked=”checked”这段删除即可。
方法2.在FTP中
打开 source/include/post/post_newthread.php
查找
[AppleScript] 纯文本查看 复制代码 $allownoticeauthor = 1;
改为
[AppleScript] 纯文本查看 复制代码 $allownoticeauthor = 0;
之后更新缓存即可,推荐使用这种方法,方便快捷。
|