Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to Remove and Add Items in “bp_get_displayed_user_nav”


Boone Gorges
Keymaster

@boonebgorges

@blogmudgeon Glad to help :)

@ri-kun bp_core_remove_nav_item doesn’t take multiple arguments. Try something like:
`<?php function boone_remove_blogs_nav() {
bp_core_remove_nav_item( ‘blogs’ );
bp_core_remove_nav_item( ‘groups’ );
}
add_action( ‘bp_setup_nav’, ‘boone_remove_blogs_nav’, 15 ); ?>`

Add additional lines for nav items you want to remove. And make them lowercase, as the names might be case-sensitive and they are almost certainly lowercase when they are initially added.

functions.php, in your theme directory, is the appropriate place to put this. There should be no function called bp-functions.php.

Skip to toolbar