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.
The forum of the forums
3 posters

    New Features: Upgrade of Forumotions notifications center.

    The Godfather
    The Godfather
    Administrator
    Administrator


    Posts : 5297
    Reputation : 844

    In progress New Features: Upgrade of Forumotions notifications center.

    Post by The Godfather August 21st 2013, 1:44 pm

    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:

    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:

    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, 12:50 pm; edited 3 times in total
    The Godfather
    The Godfather
    Administrator
    Administrator


    Posts : 5297
    Reputation : 844

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

    Post by The Godfather August 21st 2013, 1:46 pm

    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
    ddoesmc
    ddoesmc
    Forumember


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

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

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

    Awesome update!
    avatar
    gangstar16
    New Member


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

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

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

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

      Current date/time is September 22nd 2024, 5:32 pm