bbPress

Simple, Fast, Elegant

bbPress plugin browser »

Post Notification

Download

Version:

Other Versions

Last Updated: 2007-1-14

Requires bbPress Version: 0.73 or higher

Compatible up to: 0.74

Average Rating

5 stars
4 stars
3 stars
2 stars
1 star
(3)

Your Rating

Author: thomasklaiber

It does what the name says. If you have a topic in your favorites and there will be a new post to this topic it sends you an email. Simply upload and it does its job.


  1. yoyo

    Inactive

    I would like a feature to this plugin that could automatically add new user topics to favorites.

    Posted: 1 year ago #
  2. Nice idea, I'll get to it as soon as I can, ok? I think this isn't that hard to add...

    Posted: 1 year ago #
  3. tinemuller

    Inactive

    Would it be possible NOT to get an email when it's your OWN post?

    Posted: 1 year ago #
  4. Hi, I am using BBPress 0.81-1 and installed post-notification version 1.3.
    I subscribed to some favorites but it does not send any email of new posts.
    I don't get any errors, only no email arrives.
    I also tried topic-notification and that worked fine.
    Is this a known issue?

    Actually, all I need is that for every post a message goes out to the key master to keep her posted. So I also tried notification_all.php I found on the forums but that did not work either. Is there somewhere a way to do this hanging about that I perhaps missed?

    Thank you, Han

    Posted: 1 year ago #
  5. Did you activate the notification in your profile?

    If you keep having problems just contact me: info [at] thomasklaiber [dot] com

    @tinemuller:
    It would be possible. I'll release a configurable version of this plugin soon with all the suggested features.

    Posted: 1 year ago #
  6. very good

    Posted: 11 months ago #
  7. Automatically adding a user's new topic to their own favorites is as simple as this plugin. I've unhooked the notification plugin so users don't get emailed for their own new topics starting.

    <?php
    /*
     * Plugin Name: User Topics To Favorites
     * Plugin Description: automatically adds new topics created by a user to their favorites
     * Author: _ck_
     * Author URI: http://CKon.wordpress.com
     * Plugin URI: http://CKon.wordpress.com
     * Version: 0.1
     */
    
    function user_topics_to_favorites($topic_id) {
    remove_action('bb_new_post', 'notification_new_post');  // don't email users about their new topic
    $topic = get_topic( get_topic_id( $topic_id ) );  // fetch topic poster's  id
    bb_add_user_favorite( $topic->topic_poster, $topic_id );
    }
    add_action('bb_new_topic', 'user_topics_to_favorites');
    
    ?>
    Posted: 11 months ago #
  8. it would be great if
    user have an option to set subscribe (add2fave) for each post tht he or she replied

    also admin can specify a froum that notify every new tpic or pos to moderator by mail

    Posted: 11 months ago #
  9. boan901

    Inactive

    Several times, I have gone into my profile and checked

    Favorite Notification
    If you want to get an email when there is a new post to a topic in your favorites.

    After I click the "Update" button, the check goes away. It won't "stick".

    Also, I am not getting email notifications. Does anyone know why I can't update my profile to activate notification on Favorites?

    Posted: 8 months ago #
  10. Hmm I can't help you! I tried it with the newest version of bbpress and it works without any problems ...

    Have you installed any other plugins?

    Posted: 7 months ago #
  11. Hey Thomas....love the idea behind this plugin. Definitely a must have.
    But I just installed it using the latest version of bbPress, but it doesnt do anything.

    The link the plugin gives me also seems dead: http://www.la-school.com/2006/bbpress-notification/

    Is it me or you?

    Posted: 3 months ago #
  12. dangrey

    Member

    Yes, this plugin doesn't seem to work with 0.9.

    A real shame as it's just what a new, growing forum needs.

    Posted: 2 months ago #
  13. This probably stopped working because bbPress 0.9 stopped using "admin_email" and is now "from_email".

    Edit line 22:
    'From: ' . bb_get_option('admin_email')
    and change it to
    'From: ' . bb_get_option('from_email')

    and see if that helps?

    Posted: 2 months ago #
  14. That change does make it work. I am wishing if there is an option to change the email id from to any email id I want to use. Any ideas.

    Posted: 2 months ago #
  15. Then just change bb_get_option('from_email') to whatever you want, ie. . "email@your-forum.com" .

    Posted: 2 months ago #
  16. What file is bb_get_option in?

    Thank you.

    Posted: 1 month ago #
  17. Found the file. It is the plug-in itself, "notification.php". The code modification does work. You folks are good!

    Thank you.

    Posted: 1 month ago #
  18. Sepedeh

    Member

    Mates, I have a problem. I'm a beginer so I need a bit of help from you with this plugin. It's intalled, activated and works great, but my problem is that I want all user (keymasters, moderators, administrators and MEMBERS) to receive a notification e-mail.
    What should I do? My MEMBERS are going crazy! :|

    Thank you!

    Posted: 1 month ago #

RSS feed for this topic

Add a Comment

You must log in to post.

Code is Poetry.