I am trying to remove activity comments as separate entries 2.0
-
Dear @danbp,
I have seen and tried the solution you kindly provided at: “I am trying to remove activity comments as separate entries” on: https://buddypress.org/support/topic/i-am-trying-to-remove-activity-comments-as-separate-entries/
function my_bp_activities_include_activity_types( $retval ) { // only allow the following activity types to be shown $retval['action'] = array( // 'activity_update', 'activity_comment', 'new_blog_post', 'new_blog_comment', 'friendship_created', 'created_group', ); return $retval; } add_filter( 'bp_after_has_activities_parse_args', 'my_bp_activities_include_activity_types' );
This is awesome, until I found out that it also removes them in @-mentions – the …/activity/mentions/ posts … please, is there any way I can keep those under …/activity/mentions/ ??
Thanks a lot :))
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.