Hello There, Guest! (LoginRegister)

Latest Releases: Karma Stars - Automatic Subscriptions - Goodbye Spammer

Latest Updates: Karma Stars 1.0

Follow @mattrmybbmods on Twitter for info on releases and updates

View Plugin InformationView Plugin Licence and Download
Automatic Subscriptions ***** 495 Downloads
Allows you to automatically subscribe to all new threads and replies without having to manually subscribe to all forums and threads.
Version: 1.0
Compatibility: 1.6.x
Files: 2
Templates added: 1
Template changes: 2

Information:
This plugin enables you to get email notifications for all new threads without having to manually subscribe to every forum, and to get email notifications for all new posts without having to manually subscribe to every thread.

To Install:
Upload ./inc/plugins/automaticsubscriptions.php to ./inc/plugins/
Upload ./inc/languages/english/automaticsubscriptions.php to ./inc/languages/english/
Go to ACP > Templates & Style > Templates > **expand template set** > member_register in the Member Templates and usercp_options in the User Control Panel Templates > find:
<tr>
<td colspan="2"><span class="smalltext"><label for="subscriptionmethod">{$lang->subscription_method}</label></span></td>
</tr>
<tr>
<td colspan="2">
<select name="subscriptionmethod" id="subscriptionmethod">
<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>
</select>
</td>
</tr>

afterwards, add:
{$automaticsubscriptions}
Go to ACP > Plugins > Activate

Change Log:
09/05/09 - v0.1 -> Initial 'beta' release.
03/12/11 - v0.1 -> v1.0 -> Added ability to subscribe to threads/posts in subscribed forums only. Made compatible with MyBB 1.6.5. To upgrade, deactivate plugin, reupload ./inc/plugins/automaticsubscriptions.php and ./inc/languages/english/automaticsubscriptions.php, reactivate. Make sure to re-do manual template edit explained above.

Screenshots:
Preview Image 3253
digital.medics - 1st February 2011
i need that :D

FBI - 3rd February 2011
great idea.. I will try

but, would be careful for hundreds of member using that :)
Note: http://mattrogowski.co.uk/mybb/thread-38.html :)

matrixboy - 23rd June 2011
you can add "selected" to make the default
go to ACP > Templates & Style > Templates > **expand template set** >Member Templates > member_register
find
<option value="1" {$no_email_subscribe_selected}>{$lang->no_email_subscribe}</option>
<option value="2" {$instant_email_subscribe_selected}>{$lang->instant_email_subscribe}</option>

and add "selected" beside "<option " any option , like :
<option selected value="2" {$instant_email_subscribe_selected}>{$lang->instant_email_subscribe}</option>

:)