New Features: Upgrade of Forumotions notifications center.
3 posters
Page 1 of 1
New Features: Upgrade of Forumotions notifications center.
Dear users,
The ForuMotion Team has great pleasure to present a new improvement, inspired by YOUR suggestions, to meet your expectations and develop your forums.
Without further ado, here are the new improvement provided in this update :
We make a change in our notifications system. This new update will give every member the choice between email notification or toolbar notification or both of them via new options in his notifications profile tab.
Every user will then have a table with a column containing the different types of notifications ( Friend requests, The incoming of a private message, The incoming of a profile message, etc..) and across two columns, one for "email notifications" and the other one for "toolbar notifications" with check boxes. Each user will then be free to choose the desired type of notification:
We also added a new mass delete button for notifications registered in the notifications center:
N.B:
1. To avoid duplication, we removed two options from the user profile preferences as they are currently managed directly from the notifications tab. These are:
2. To avoid getting spammed by the forum, it is not possible to receive email notifications for friends connection.
3. Admins who run forum versions: phpBB2 & punBB with the template: profile_add_body personalized, must be sure to alter the template below:
We hope you'll enjoy it !
Best regards,
Forumotion Staff
The ForuMotion Team has great pleasure to present a new improvement, inspired by YOUR suggestions, to meet your expectations and develop your forums.
Without further ado, here are the new improvement provided in this update :
We make a change in our notifications system. This new update will give every member the choice between email notification or toolbar notification or both of them via new options in his notifications profile tab.
Every user will then have a table with a column containing the different types of notifications ( Friend requests, The incoming of a private message, The incoming of a profile message, etc..) and across two columns, one for "email notifications" and the other one for "toolbar notifications" with check boxes. Each user will then be free to choose the desired type of notification:
We also added a new mass delete button for notifications registered in the notifications center:
N.B:
1. To avoid duplication, we removed two options from the user profile preferences as they are currently managed directly from the notifications tab. These are:
- Notify by e-mail when a new message has arrived in my inbox
- Notify me by e-mail if someone reports a post
2. To avoid getting spammed by the forum, it is not possible to receive email notifications for friends connection.
3. Admins who run forum versions: phpBB2 & punBB with the template: profile_add_body personalized, must be sure to alter the template below:
We hope you'll enjoy it !
Best regards,
Forumotion Staff
Last edited by The Godfather on August 27th 2013, 10:50 am; edited 3 times in total
The Godfather- Administrator
- Posts : 5343
Reputation : 846
template modifications to have the new upgrade of Forumotions notifications center.
Admins which have forums in the versions PhpBB2 & PunBB with the template profile_add_body personalized, must absolutely be sure to do the template modifications below to have the new upgrade of Forumotions notifications center.
phpbb2
You must delete the code:
punbb
You must delete the code:
We hope you'll enjoy it !
Best regards,
Forumotion Staff
phpbb2
You must delete the code:
- Code:
<tr>
<td class="row1"><span class="gen">{L_NOTIFY_ON_PRIVMSG} :</span></td>
<td class="row2">
<label class="gen"><input type="radio" name="notifypm" value="1" {NOTIFY_PM_YES} />{L_YES}</label>
<label class="gen"><input type="radio" name="notifypm" value="0" {NOTIFY_PM_NO} />{L_NO}</label>
</td>
</tr>
- Code:
<tr>
<td class="row1"><span class="gen">{L_NOTIFY_ON_REPLY} :</span><br /><span class="gensmall">{L_NOTIFY_ON_REPLY_EXPLAIN}</span></td>
<td class="row2">
<label class="gen"><input type="radio" name="notifyreply" value="1" {NOTIFY_REPLY_YES} />{L_YES}</label>
<label class="gen"><input type="radio" name="notifyreply" value="0" {NOTIFY_REPLY_NO} />{L_NO}</label>
</td>
</tr>
- Code:
<tr>
<td class="row1"><span class="gen">{switch_preferences_menu.switch_report.L_NO_REPORT_MAIL} :</span></td>
<td class="row2">
<label class="gen"><input type="radio" name="no_report_mail" value="0" {switch_preferences_menu.switch_report.NO_REPORT_MAIL_YES} />{L_YES}</label>
<label class="gen"><input type="radio" name="no_report_mail" value="1" {switch_preferences_menu.switch_report.NO_REPORT_MAIL_NO} />{L_NO}</label>
</td>
</tr>
- Code:
<tr>
<td class="row1"><span class="gen">{switch_preferences_menu.switch_report.L_NO_REPORT_POPUP} :</span></td>
<td class="row2">
<label class="gen"><input type="radio" name="no_report_popup" value="0" {switch_preferences_menu.switch_report.NO_REPORT_POPUP_YES} />{L_YES}</label>
<label class="gen"><input type="radio" name="no_report_popup" value="1" {switch_preferences_menu.switch_report.NO_REPORT_POPUP_NO} />{L_NO}</label>
</td>
</tr>
punbb
You must delete the code:
- Code:
<dl>
<dt><label>{L_NOTIFY_ON_PRIVMSG} :</label></dt>
<dd>
<label><input type="radio" name="notifypm" value="1" {NOTIFY_PM_YES} /><span class="cont">{L_YES}</span></label>
<label><input type="radio" name="notifypm" value="0" {NOTIFY_PM_NO} /><span class="cont">{L_NO}</span></label>
</dd>
</dl>
- Code:
<dl>
<dt><label>{L_NOTIFY_ON_REPLY} :</label></dt>
<dd>
<label><input type="radio" name="notifyreply" value="1" {NOTIFY_REPLY_YES} /><span class="cont">{L_YES}</span></label>
<label><input type="radio" name="notifyreply" value="0" {NOTIFY_REPLY_NO} /><span class="cont">{L_NO}</span></label>
<br /><span class="italic">{L_NOTIFY_ON_REPLY_EXPLAIN}</span>
</dd>
</dl>
- Code:
<dl>
<dt><label>{switch_preferences_menu.switch_report.L_NO_REPORT_MAIL} :</label></dt>
<dd>
<label><input type="radio" name="no_report_mail" value="0" {switch_preferences_menu.switch_report.NO_REPORT_MAIL_YES} /><span class="cont">{L_YES}</span></label>
<label><input type="radio" name="no_report_mail" value="1" {switch_preferences_menu.switch_report.NO_REPORT_MAIL_NO} /><span class="cont">{L_NO}</span></label>
</dd>
</dl>
- Code:
<dl>
<dt><label>{switch_preferences_menu.switch_report.L_NO_REPORT_POPUP} :</label></dt>
<dd>
<label><input type="radio" name="no_report_popup" value="0" {switch_preferences_menu.switch_report.NO_REPORT_POPUP_YES} /><span class="cont">{L_YES}</span></label>
<label><input type="radio" name="no_report_popup" value="1" {switch_preferences_menu.switch_report.NO_REPORT_POPUP_NO} /><span class="cont">{L_NO}</span></label>
</dd>
</dl>
We hope you'll enjoy it !
Best regards,
Forumotion Staff
The Godfather- Administrator
- Posts : 5343
Reputation : 846
Re: New Features: Upgrade of Forumotions notifications center.
It would be even better if there was a template for it, just saying
gangstar16- New Member
- Posts : 14
Reputation : 2
Language : Arabic, Danish, English
Similar topics
» New features: Toolbar, Notifications, and More!
» Add a similar module in the center of notifications Resolved (small conflict with a second js)
» Notifications not appearing in drop down menu on toolbar, but they appear on Notifications page
» Forumotions layout.
» How did you find Forumotion?
» Add a similar module in the center of notifications Resolved (small conflict with a second js)
» Notifications not appearing in drop down menu on toolbar, but they appear on Notifications page
» Forumotions layout.
» How did you find Forumotion?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum