On Sale - Peach MyBB Theme - 10$ For limited time Check here
On Sale - Focus Responsive Theme - 20$ For limited time Check here
Removing an option inside the theme
#2
Follow these steps to do this to disable notification for existing members.

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 Smile


Messages In This Thread
RE: Removing an option inside the theme - by WallBB - 08-05-2019, 05:39 AM



Users browsing this thread: 1 Guest(s)