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
#1
Hello, I'm not too sure if this would still be classified as theme support, I'm looking to disable the option to receive PMĀ notifications via email, I'm mainly looking to only ever send emails when it comes to activating users, would this be something you can help point me in the right direction?
#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




Users browsing this thread: 1 Guest(s)