Edit the posting_editor.html file and find:I would like newly registered users to have the « Notify me when a reply is posted » option set to YES by default.
Is there an easy way to do this?
Code: Select all
<div><label for="notify"><input type="checkbox" name="notify" id="notify"{S_NOTIFY_CHECKED} /> {L_NOTIFY_REPLY}</label></div>
Code: Select all
<div><label for="notify"><input type="checkbox" name="notify" id="notify" checked="checked" /> {L_NOTIFY_REPLY}</label></div>
Clear cache after. With that, the option will be checked by default whether replying or starting a post.