remove “view” link in nav menu
-
I want to be able to remove the “view” link in nav menu for subscribers or get rid of all menu items for subscribers.
I have been able to get rid of some of the menu items with
function bpview_hide_top_nav() {
if( bp_is_active(‘xprofile’ ) )
if( bp_loggedin_user_id() == bp_displayed_user_id() ) {
bp_core_remove_nav_item( ‘profile’ );
bp_core_remove_nav_item( ‘view’ );
}
}
add_action( ‘bp_ready’, ‘bpview_hide_top_nav’ );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.