01-27-2010, 08:31 AM
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:
Change to:
This will make thread subscriptions the default for new members.
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.