How do you remove the BuddyPress profile ‘last active’ status?

Report
Question

Please briefly explain why you feel this question should be reported.

Report
Cancel

Answer ( 1 )

    0
    2023-09-24T12:52:13-05:00

    Please briefly explain why you feel this answer should be reported.

    Report
    Cancel

    Adding the code below to my bp-custom.php file removed the last active status on one of my sites

    add_filter( 'bp_nouveau_get_member_meta', 'ps_remove_last_active',10,3 );
    function ps_remove_last_active ( $meta, $member, $is_loop ){
    	$meta['last_activity'] = '';
    	return $meta;
    }

    https://buddypress.org/support/topic/remove-last-active-status/

Leave an answer

Browse

By answering, you agree to the Terms of Service and Privacy Policy.