Discuz取消默认的“接收回复通知”
本帖最后由 身后有余忘缩手 于 2025-5-11 18:22 编辑方法1.在FTP中
template\default\forum\post_editor_attribute.htm
找到
<input type="checkbox" name="allownoticeauthor" id="allownoticeauthor" class="pc" value="1"{if $allownoticeauthor} checked="checked"{/if} />
替换为
<input type="checkbox" name="allownoticeauthor" id="allownoticeauthor" class="pc" value="1"{if $allownoticeauthor}{/if} />
即将 checked=”checked”这段删除即可。
方法2.在FTP中
打开 source/include/post/post_newthread.php
查找
$allownoticeauthor = 1;
改为
$allownoticeauthor = 0;
之后更新缓存即可,推荐使用这种方法,方便快捷。
Powered by Discuz! X3.4;P;P;P
页:
[1]