WallBB Forums
Removing an option inside the theme - Printable Version

+- WallBB Forums (https://wallbb.co.uk/forums)
+-- Forum: Theme Section (https://wallbb.co.uk/forums/forumdisplay.php?fid=5)
+--- Forum: Theme Support (https://wallbb.co.uk/forums/forumdisplay.php?fid=10)
+--- Thread: Removing an option inside the theme (/showthread.php?tid=302)



Removing an option inside the theme - ArtForums - 08-03-2019

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?


RE: Removing an option inside the theme - WallBB - 08-05-2019

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