MyBB Community Forums

Full Version: How do I make it so?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

How do I make it so users defaultly have it set so they receive an email to any new topic / reply they make on the forum?
They "subscribe" to the topic/s
Yes I know but how do I do what I asked in the first post?
In UserCP "Edit Options...

"Automatically subscribe to threads you post in".
I would like it so all users have it set to subscribe when they join for all topics and posts they make.
Open ./inc/datahandlers/user.php

Find
			"emailnotify" => $user['options']['emailnotify'],

Change into
			"emailnotify" => "yes",

OR

You can set it checked on the registration page; but they can still uncheck it if they want too; with the change [above] its always 'yes' even if they uncheck it.

Open member.php
Find
			$emailnotifycheck = '';

Change into
			$emailnotifycheck = "checked=\"checked\"";
Thanks for the help Big Grin