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
(5)

Your Rating

Author: thomasklaiber


  1. test4 (and others interested) to NOT notify a user about their own post try this (untested):

    around line 16:
    change
    if ( notification_is_activated( $userdata->ID ) ) :
    to
    if ($bb_current_user->ID!=$userdata->ID && notification_is_activated( $userdata->ID ) ) :

    This could also be accomplished via the function notification_select_all_users during the mysql query by excluding the current user.

    This (should) work because the person making the post is the one triggering all the emails.

    Posted: 3 months ago #
  2. Great plugin! I am trying to reverse the default activation for all users. That is make the notification feature active on default for all users. The function starts by declaring '$checked = "";' if I set that equal to 'checked' it works, but users can not deactivate it. I started playing around with the notification_is_activated function, but I just don't know what I'm doing, and got lost. Any help?

    Posted: 2 months ago #
  3. Is there a way to add all new topics to the user who started it AND the ADMINS?

    Posted: 1 month ago #
  4. Ok it seems I am kind of silly but how can I add the check box that users need to check to activate the option "subscribe by email to favorite topics"?
    Because I cannot find it and my theme is a customized version.

    I would gladly appreciate any help.

    Does it help if I say : _ck_ you rock! (lol!!!!)

    Posted: 1 month ago #
  5. If the checkbox is not appearing and you have a custom theme, you may be missing some of the needed actions in the template to trigger it.

    Also if you are using 1.0 alpha this has not been tested with it yet so it might be that as well.

    You can try temporarily switching back to kakumei theme and see if the box appears.

    Note the checkbox is in the EDIT PROFILE section and not on the topic page.

    Posted: 1 month ago #
  6. jennygold

    Member

    I've adapted this plugin to work when a new topic is submitted by using add_action('bb_new_topic', 'notification_new_topic') instead of bb_new_post with a function I've named notification_new_topic. The problem is I tried to use the existing variables to get the title, link and author passed into the email, but they don't seem to be available when I use bb_new_topic. What variables are available and how would I get these fields to be automatically filled in on the email?

    Thanks!

    Posted: 4 days ago #

RSS feed for this topic

Add a Comment

You must log in to post.

Code is Poetry.