MyBB Community Forums

Full Version: Set default subscription mode
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a spot where I can set the default subscription mode to subscribe?  I want new users to automatically subscribed to everything unless they consciously decide to unsubscribe.

Thanks!
@AOR, thanks! Though that thread was old, it got me close enough! Here is what I did:
Navigated to the template and changed this:
<select name="subscriptionmethod" id="subscriptionmethod">
<option value="0" {$no_auto_subscribe_selected}>{$lang->no_auto_subscribe}</option>
<option value="1" {$no_subscribe_selected}>{$lang->no_subscribe}</option>
<option value="2" {$instant_email_subscribe_selected}>{$lang->instant_email_subscribe}</option>
<option value="3" {$instant_pm_subscribe_selected}>{$lang->instant_pm_subscribe}</option>
</select>

to this:

<select name="subscriptionmethod" id="subscriptionmethod">
<option value="2" {$instant_email_subscribe_selected}>{$lang->instant_email_subscribe}</option>
<option value="0" {$no_auto_subscribe_selected}>{$lang->no_auto_subscribe}</option>
<option value="1" {$no_subscribe_selected}>{$lang->no_subscribe}</option>
<option value="3" {$instant_pm_subscribe_selected}>{$lang->instant_pm_subscribe}</option>
</select>
Welcome. I knew it was old. However, it was a place to launch from, right?

Have a blessed and prosperous day!