• How can we remove mandrill from the Dashboard Submenu?
    I was able to with the below code but that removes all submenu items after the updates submenu item…

    Sidenote: Jetpack Site Stats will not show dashboard widget reports until Mandrill is removed from the Dashboard Submenu, a little bug I noticed.

    function edit_admin_menus() {
    global $submenu;
    unset($submenu[‘index.php’][11]);
    return $submenu;
    }
    add_action( ‘admin_menu’, ‘edit_admin_menus’ );

    Thanks so much.

The topic ‘Remove ManDrill from Dashboard Submenu’ is closed to new replies.