08-05-2019, 05:39 AM
Follow these steps to do this to disable notification for existing members.
Go to PHPmyAdmin and run this query :-
To disable notification for new members, modify member_register template and find
Replace it with this
Hope it helps
Go to PHPmyAdmin and run this query :-
Code:
UPDATE `mybb_users` SET `subscriptionmethod`= '1';
To disable notification for new members, modify member_register template and find
Code:
<option value="0" {$no_subscribe_selected}>{$lang->no_auto_subscribe}</option>
<option value="1" {$no_email_subscribe_selected}>{$lang->no_email_subscribe}</option>
<option value="2" {$instant_email_subscribe_selected}>{$lang->instant_email_subscribe}</option>
Replace it with this
Code:
<option value="1" {$no_email_subscribe_selected}>{$lang->no_email_subscribe}</option>
<option value="0" {$no_subscribe_selected}>{$lang->no_auto_subscribe}</option>
<option value="2" {$instant_email_subscribe_selected}>{$lang->instant_email_subscribe}</option>
Hope it helps