Hi @littlemisslanna,
can you give more details please ?
Which type of forum do you use: bbpress as stanalone or group forums ?
Do you mean “edit” or “publish” ? – it’s not the same thing. They’re no notification when you edit (aka modify) a topic.
What do you mean by notification ? A private mail or the activity stream information (site, group, profile…) ?
Hi there! Yes, sorry. So for example:
http://i64.tinypic.com/212smx5.png
This is a shot of the page showing all site activity. The first one at the bottom shows I replied to the topic in the bbpress forum. This is standalone, I beleive, as I don’t have any group forums enabled. So anyway yes, I expected it to show up once here.
I immediately edited the post because I saw a typo. So the activity feed showed it again. I thought this was activity-only stream, but then a user emailed me this:
http://i66.tinypic.com/2vcwaqq.jpg
I had mentioned her in the post, and then edited immediately after, so it notified her again.
That is an old bbPress issue. When you edit a topic, i some case, the topic comes up twice(or more, depending how many edit you made) on the site activity.
This bug will be corrected in bbP 2.6 (actual version is 2.5.9). See ticket & patch here.
What you can do immediatly is to modify following file:
wp-content/plugins/bbpress/includes/extend/buddypress/activity.php
Replace code between line 277/279
$existing = bp_activity_get_specific( array( 'activity_ids' => $activity_id, 'show_hidden' => true, 'spam' => 'all', ) );
if ( empty( $existing['total'] ) || ( 1 !== (int) $existing['total'] ) )
return null;
by
$existing = new BP_Activity_Activity( $activity_id );
if ( empty( $existing->component ) ) {
return null;
}
Thank you so much! This definitely worked. Now I have to worry about my users losing their edit post button in bbpress :’| the work never ends