Skip to:
Content
Pages
Categories
Search
Top
Bottom

Hide Emails Menu

Viewing 2 replies - 1 through 2 (of 2 total)

  • Alex Stine
    Participant

    @alexstine

    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. 🙂


    Alex Stine
    Participant

    @alexstine

    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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
Skip to toolbar