Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
My site integration for comments to my buddypress activity stream still not working
Hi @kevlew,
wpForo doesn't support comments. wpForo only support topics and posts. Also, we've already mentioned that the activation only works if the forum is not private and it's available for guests.
You should do a small change in core to enable Activities for private forums. We'll add an option in future to enable disable it through Dashboard, so you'll not have to do this change after each wpForo update.
Connect to wpforo files via FTP or cPanel File Manager tool and open this file:
/wp-content/plugins/wpforo/wpf-includes/functions-template.php
Find this code:
if( !empty($private_for_usergroups) && WPF()->forum->private_forum($item['forumid'], $private_for_usergroups) ){
return false;
}
Change to this:
if( !empty($private_for_usergroups) && WPF()->forum->private_forum($item['forumid'], $private_for_usergroups) ){
//return false;
}