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.
bbPress plugin browser »
Post Notification
Download
Version:
Last Updated: 2007-1-14
Requires bbPress Version: 0.73 or higher
Compatible up to: 0.74
Average Rating





Your Rating
Author: thomasklaiber
-
I would like a feature to this plugin that could automatically add new user topics to favorites.
Posted: 1 year ago # -
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 # -
Would it be possible NOT to get an email when it's your OWN post?
Posted: 1 year ago # -
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 # -
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 # -
very good
Posted: 11 months ago # -
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 # -
it would be great if
user have an option to set subscribe (add2fave) for each post tht he or she repliedalso admin can specify a froum that notify every new tpic or pos to moderator by mail
Posted: 11 months ago # -
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 # -
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 # -
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 # -
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 # -
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 # -
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 # -
Then just change
bb_get_option('from_email')to whatever you want, ie.. "email@your-forum.com" .Posted: 2 months ago # -
What file is bb_get_option in?
Thank you.
Posted: 1 month ago # -
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 # -
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 #
Add a Comment
You must log in to post.