Nov 15, 2023 5:56 pm
When setting the BuddyPress Activity integration it shows activity for every time someone likes a post.
This can get quite overwhelming.
How can I keep the notifications going to BuddyPress activity for topics and replies, but not for likes?
3 Replies
Nov 18, 2023 9:08 am
Hi @vanessa,
You can use this hook script in a PHP code snippet of Code Snippets plugin or in the functions.php of current active theme. However you should wait for wpForo 2.2.4 and higher versions, it'll be released within next 1-2 days:
function custom_buddypress_activity_types( $activity_types ){ return ['wpforo_topic', 'wpforo_post']; } add_filter( 'wpforo_buddypress_activity_types', 'custom_buddypress_activity_types');
Dec 01, 2023 1:57 pm
thx, just replying to confirm that this works as expected with 2.2.6.
Appreciate the help!