Hello,
For now, I have hid the menu with CSS until I can find a cleaner solution. BuddyPress adds way to many links to the Admin especially considering the fact I don’t need BuddyPress registration features, they are just there and cannot be disabled for whatever reason.
Thanks for any help. 🙂
OK, if anyone else was wondering how to do this, it’s simple. Just add this code to functions.php or a mu-plugin and the BuddyPress items disappear.
function remove_admin_menu_items() {
/*Remove Emails from Appearance.*/
remove_submenu_page( 'themes.php', 'bp-emails-customizer-redirect' );
/*Remove Manage Signups*/
remove_submenu_page( 'users.php', 'bp-signups' );
}
add_action( 'admin_menu', 'remove_admin_menu_items' );
Hope that helps someone else. 🙂 Thanks.