remove Events menu from BuddyPress profile menus
-
would like to remove events menu from BuddyPress profile menus …
i tried
function my_remove_em_nav() {
global $bp;
bp_core_remove_subnav_item($bp->groups->slug,’group-events’);
bp_core_remove_subnav_item($bp->groups->current_group->slug,’events’);
}
add_action( ‘init’, ‘my_remove_em_nav’ );but doesnt work ..
am i doing anything wrong ?
- The topic ‘remove Events menu from BuddyPress profile menus’ is closed to new replies.