What version of bbPress/BuddyPress are you using?
I am using the latest versions of both the software. Buddypress 1.5 and bbpress 2
I have installed bbpress both for group forums and sitewide forum. I started seven discussions in sitewide forum but none of them appearing in my activity.
This is not an issue with bbPress 2.3.2 and BuddyPress 1.7.2 (within group forums at least).
I had the same problem. Look if you have checked the “Allow search engines to index this site” option under “Reading”
It works for me.
@tbermudas that’s an interesting set of options under Reading. It looks like an older version or perhaps not BuddyPress? What version is it?
I only have 1 checkbox labeled Search Engine Visibility which when checked takes the meaning Discourage search engines from indexing this site. I think it has the same effect as the first 2 radio options shown in your screen capture.
I had this problem with bbpress 1.6 and bbpress 2.3.
I can’t find the topic where I found this solution.
The screen capture is from Internet. In my WordPress I have also only the first option.
I was having the exact same problem, and yes un-checking Discourage search engines from indexing this site, does make bbPress activity start being recorded.
As to why this is so and if the behaviour is intended, your guess is as good as mine. If it *is* intended, I am extremely curious to know the twisted logic that dictated this implementation.
From https://bbpress.trac.wordpress.org/ticket/2151 ,here’s a quick hack to turn bbPress activity recording on, on sites that have the Discourage search engines option checked. Put this somewhere in functions.php or in your own plugin’s code:
<?php
add_filter( 'bbp_is_site_public', 'yourownprefix_enable_bbp_activity', 10, 2);
function yourownprefix_enable_bbp_activity( $public, $site_id ) {
return true;
}
?>
Unchecking Discourage search engines option does fix my issue as well. Site wide forum activity is shown in activity streams on doing so.
FYI – If you have a forum marked as private, the update does NOT appear in the Activity feed. It only works for public forums.