The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

New Features: Upgrade of Forumotions notifications center.

3 posters

Go down

In progress New Features: Upgrade of Forumotions notifications center.

Post by The Godfather August 21st 2013, 11:44 am

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. Cool

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. Very Happy

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:

notifications - New Features: Upgrade of Forumotions notifications center. 21-08-10

We also added a new mass delete button for notifications registered in the notifications center:

notifications - New Features: Upgrade of Forumotions notifications center. 21-08-11



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 ! cheers

Best regards,
Forumotion Staff


Last edited by The Godfather on August 27th 2013, 10:50 am; edited 3 times in total
The Godfather
The Godfather
Administrator
Administrator

Posts : 5104
Reputation : 831

Back to top Go down

In progress template modifications to have the new upgrade of Forumotions notifications center.

Post by The Godfather August 21st 2013, 11:46 am

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:

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>
Located after the code:

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>
And you must delete the code:

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>
Located after the code:

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>
Located after the code:

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>
And you must delete the code:

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>
Located after the code:

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 ! cheers

Best regards,
Forumotion Staff
The Godfather
The Godfather
Administrator
Administrator

Posts : 5104
Reputation : 831

Back to top Go down

In progress Re: New Features: Upgrade of Forumotions notifications center.

Post by ddoesmc October 30th 2013, 12:45 am

Awesome update!
ddoesmc
ddoesmc
Forumember

Male Posts : 283
Reputation : 11
Language : Mainly english
Location : New Jersey

http://www.officialmc.forumotion.com

Back to top Go down

In progress Re: New Features: Upgrade of Forumotions notifications center.

Post by gangstar16 October 30th 2013, 5:19 am

It would be even better if there was a template for it, just saying Wink
avatar
gangstar16
New Member

Posts : 14
Reputation : 2
Language : Arabic, Danish, English

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum