Remove tabs from buddypress groups and members pages [closed]

Managed to crawl through the core code and find this function:

bp_core_remove_subnav_item

So you can do something like this:

function remove_group_options() {
    global $bp;

    bp_core_remove_subnav_item($bp->groups->slug, 'members');
    bp_core_remove_subnav_item($bp->groups->slug, 'send-invites');

}
add_action( 'bp_setup_nav', 'remove_group_options' );