Activity

  • Joy replied to the topic Hide "Base" and profile visibility settings & RSS in the forum Boss. theme 9 years, 1 month ago

    I had to add this to my child functions.php file

    function remove_privacy_nav() {
    global $bp;
    bp_core_remove_subnav_item( ‘settings’, ‘profile’ );
    }
    add_action( ‘bp_setup_nav’, ‘remove_privacy_nav’ );

    Now it works. Thank you.