Remove Following & Followers from Profile Nav (bp_setup_nav)
-
I need to remove “Following” and “Followers” from the Profile nav.
I can remove other links using the function below in bp-custom.php
But Follow links still appear.
I’ve tried various priority values.
Perhaps I am calling the wrong tag in the add_action ?
`
function sc_remove_nav_tabs() {
/* works great */
bp_core_remove_nav_item( ‘events’ );
bp_core_remove_nav_item( ‘friends’ );
bp_core_remove_subnav_item( ‘activity’, ‘friends’ );/* doesn’t work*/
bp_core_remove_nav_item( ‘followers’ );
bp_core_remove_nav_item( ‘following’ );
bp_core_remove_subnav_item( ‘activity’, ‘following’ );}
add_action( ‘bp_setup_nav’, ‘sc_remove_nav_tabs’, 15 );
//add_action( ‘xprofile_setup_nav’, ‘sc_remove_nav_tabs’ );
`Also tried, without success:
bp_core_remove_subnav_item( $bp->activity->slug, ‘following’ );
- The topic ‘Remove Following & Followers from Profile Nav (bp_setup_nav)’ is closed to new replies.