MyBB Community Forums

Full Version: Auto subscription to thread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi when user opening new thread or post,the thread subscription option is set
"Do not subscribe to this thread" as default instead how to set
"Subscribe without receiving email notification of new replies" as default.
Thanks in advance
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" />