- This topic has 0 replies, 1 contibutor, and was last updated 9 years, 3 months ago by .
Viewing 1 post (of 1 total)
Question
Viewing 1 post (of 1 total)
- The question ‘activity filter – member profile’ is closed to new replies.
BuddyBoss Home – Web › Support Forums › General › BuddyPress (general issues) › activity filter – member profile
Hi, I was able to filter out sitewide activity to return activity_update only with:
add_action( ‘bp_setup_nav’, ‘bp_change_tabname’, 999 );
//set activity default filter
function bpfr_filtering_activity( $retval ) {
global $bp;
// activities to filter on, comma separated
$retval[‘action’] = ‘activity_update’;
return $retval;
}
add_filter( ‘bp_after_has_activities_parse_args’, ‘bpfr_filtering_activity’ );
How can I return the same for member>profile>personal ?