Tagged: buddypress
- InactiveLevel: EnlightenedPosts: 28
Is there a simple way that’s I can stop bbpress replies from showing in the buddypress activity area, I prefer only the bbpress topic to show but not the reply
Hello Adeala,
Thank you for posting. There is not a direct setting to prevent the recording of activity based on type. Yet, You can achieve this using code. Try the following code in your “bp-custom.php” file.
/** * Modify activity args * * @param array $r Activity args. * * @return bool */ function buddydev_modify_record_activity_args( $r ) { if ( $r['type'] && in_array( $r['type'], array( 'bbp_reply_create', 'bbp_reply_edit' ) ) ) { $r = false; } return $r; } add_filter( 'bbp_after_record_activity_parse_args', 'buddydev_modify_record_activity_args' );
Let me know if it works or not.
Regards
Ravi- InactiveLevel: EnlightenedPosts: 28
Thanks that’s worked, lovely help
Secondly please
How can I get favorite count to display on my site headerI need something like this
favorite (1) ,Mention (1) Please do not use same topic for continuous questions. It makes the topic useless for others and makes our efforts of community support unworthy of the time.
Please open a new topic for unrelated issues.
Thank you
Brajesh- InactiveLevel: EnlightenedPosts: 28
The topic ‘ [Resolved] How can I Remove BbPress Replies From Buddypress Activity’ is closed to new replies.