@sjoerd-walburg,
The second problem is that ratings not shown:
The addon adds only if the article is rated and/or the comment is voted.
The first thing is that the Buddypress integration options for profile only visible are for the Admin account. Not in the public for members?
For privacy reasons, this feature is disabled by default. You can control it using the hooks provided below:
- wpdiscuz_bpi_user_has_access_to_discussions_tab
- wpdiscuz_bpi_user_has_access_to_comments_tab
- wpdiscuz_bpi_user_has_access_to_reactions_tab
- wpdiscuz_bpi_user_has_access_to_rates_tab
- wpdiscuz_bpi_user_has_access_to_subscriptions_tab
- wpdiscuz_bpi_user_has_access_to_votes_tab
- wpdiscuz_bpi_user_has_access_to_follows_tab
- wpdiscuz_bpi_user_has_access_to_followers_tab
This is an example:
add_filter('wpdiscuz_bpi_user_has_access_to_rates_tab', '__return_true');
The remaining tabs should be enabled using the same logic.