Here I will tell you how you can ensure that the "Notify me when a reply is posted" option is automatically turned on for all users.
Open /includes/functions_user.php file in phpBB root and find this line.
Code: Select all
'user_notify' => 0,
Code: Select all
'user_notify' => 1,
Code: Select all
UPDATE phpbb_users SET user_notify = 1 WHERE user_id > 1;
Your users can disable it from UCP at any time. That's kind of the beauty of it.
Additionally, you can also do this by editing the style file. A lot of times it's effective when opening a new topic and it's a aggressive, because it's open every time; but it's possible if you want to do it. Open posting_editor.html file of your style. If it doesn't exist at your style, copy it from the default style prosilver.
Then find:
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>
So now I have explained how to turn Notify me when a reply is posted on by default or automatically in your phpBB forum. Do you have any questions? Do you do this or is it better for you to have it off by default?