This example demonstrates how to remove the Notifications item from the BuddyPress Settings default navigation menu. Simply add the code below to your theme’s functions.php file.
Here is a similar example that could be used to remove the System Notices menu from the Messages section.
<?php | |
// Remove Messages->Notices | |
function skw_remove_notices_subnav() { | |
global $bp; | |
if ( $bp->current_component == $bp->messages->slug ) { | |
bp_core_remove_subnav_item( $bp->messages->slug, 'notices' ); | |
} | |
} | |
add_action( 'wp', 'skw_remove_notices_subnav', 11 ); |