WallBB Forums

Full Version: Removing an option inside the theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?
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