Webmaster Help Forums

Full Version: MyBB: Default thread subscription for new members
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
To make thread subscriptions the default for new users, edit the member_register template by going ACP > Templates & Style > Templates > "your theme template" > Member Templates > member_register.

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>

Change to:
Code:
<option value="0">{$lang->no_auto_subscribe}</option>
<option value="1">{$lang->no_email_subscribe}</option>
<option value="2" selected="selected">{$lang->instant_email_subscribe}</option>

This will make thread subscriptions the default for new members.
I don't get the code,can you kindly explain it?
(05-12-2011 12:44 PM)mandy Wrote: [ -> ]I don't get the code,can you kindly explain it?

Where are you getting stuck? Did you log into the Admin Control Panel (ACP)?
Reference URL's