MyBB Community Forums

Full Version: How do i set ' notifications ' off ( by default )
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When the ppl register, the notifications thingy is on by default.
How can i change that?
When they register -> ' On '
=> Should be ' Off '
go to Admin Cp/Registration and Profile Options the second option.
Registration Method set it as instant Activation
No no Toungue
I mean'th something else.
When they post or add a thread ...
Bumpy
I'm assuming you're talking about "email notifications of new posts in a thread"

Open member.php
Find:
		if(!$fromreg)
		{
			$allownoticescheck = "checked=\"checked\"";
			$hideemailcheck = "";
			$invisiblecheck = "";
			$emailnotifycheck = "";
			$receivepmscheck = "checked=\"checked\"";
		}
around line 575
Make sure that
			$emailnotifycheck = "";
Save and upload to your host.

If you're talking about the admin notices, then change
$allownoticescheck = "checked=\"checked\"";
to
$allownoticescheck = "";
Heh, thx Rolleyes Big Grin