Buddypress notifications not working (3.0.5)

7.43K viewsIssues
0

So basically Buddypress integration is only partial working. Anspress properly sends info about activities and BP shows them, but BP doesn’t show any notifications for AP actions. In that case integration with BP is somewhat problematic.

If BP is active, then automatically AP notifications (drop down menu etc.) are switched off. So now there are no notifications at all if you want to integrate AP with BP.

0

I’ve been poking around this problem and found that notifications for BP where built based on two functions: ap_add_parti() and ap_get_parti(). You do not use these functions anymore, so there You have it.

There is no participant added to the meta after submitting question, answer or comment, so:

$participants = ap_get_parti( $answer->post_parent );

// and

$participants = ap_get_parti( $comment->comment_post_ID ); }

are always returning null.

commented on answer

Yes you are are right, that’s a bug.

You are viewing 1 out of 4 answers, click here to view all answers.