Aug 05, 2018 1:07 am
My site integration for comments to my buddypress activity stream still not working
3 Replies
Aug 05, 2018 7:03 pm
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.
Aug 06, 2018 11:05 am
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;
}