MyBB Community Forums

Full Version: Auto subscribe users of specific group
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I created a custom group in which all members should automatically be subscribed via email to posts they created or where they posted.

Can I set this via the Admin-CP or does this setting have to be applied by every member of this group?

Regards
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 for your reply.

Your solution isn't group specific right?
No, if you need to restrict selective groups only, then you need to edit core files or request a Plugin.