BuddyBoss Home – Web Support Forums General BuddyPress (general issues) activity filter – member profile

Viewing 1 post (of 1 total)
  • Question

    #44181
    @surfbuddy

    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 ?

Viewing 1 post (of 1 total)
  • The question ‘activity filter – member profile’ is closed to new replies.