MyBB Community Forums

Full Version: Enable Subscription ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello there, i want to enabled the forums/threads subscription for all old + new (new registered) members by default. I want force all to subscribed instant via Email.

How i can do that ???
For Auto subscribe: Go to: ACP > Templates > Member Templates > member_register template > and find;
<option value="0" {$no_subscribe_selected}>{$lang->no_auto_subscribe}</option>
and change it to;
<option value="0" selected="selected" {$no_subscribe_selected}>{$lang->no_auto_subscribe}</option>

Similarly change it in User Control Panel Templates > usercp_options template.

---
If you want to make it permanent to every user must get email notified, then use the following code;
<input type="hidden" name="subscriptionmethod" id="subscriptionmethod" value="2" />
Thanks Yal, do you have a SQL query to force all user change this option?
Why would you force users to receive emails if they have chosen not to? I know I would hate to be forced to get emails for that reason.
(2011-03-18, 04:44 AM)NNT_ Wrote: [ -> ]Thanks Yal, do you have a SQL query to force all user change this option?

UPDATE `mybb_users` SET `subscriptionmethod` = '2'