Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Jason Wong

    (@eljkmw)

    I’ve just turned OFF the “Turn on/off admin menu configuration” selection in Admin Menu, and kept “Hide admin menu completely” selected, which made the menus reappear while the AG Custom Admin menu disappears for all users (including Administrator). By having the “Turn on/off admin menu configuration” OFF, this has disabled all “Edit / Remove Menu Items” settings.

    Could the selection cases of the above be messed up in the source code? I wonder …

    Thread Starter Jason Wong

    (@eljkmw)

    I can’t wait any longer for a fix. So, I’ve to apply the following code:

    // Remove Dashboard admin submenus
    function adb_remove_submenus() {
    	remove_submenu_page ( 'index.php', 'update-core.php' );
    	remove_submenu_page ( 'index.php', 'wpsc-upgrades' );
    	remove_submenu_page ( 'index.php', 'wpsc-purchase-logs' );
    }
    add_action('admin_menu', 'adb_remove_submenus');

    Sigh …

    “Hide Admin Menu completely” can be used to hide all default menu items. It may look like a problem, but actually it can be very useful when user wants to hide all default menu items and to show only new custom buttons that can be added in AGCA menu editor.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Abnormality with "Hide Admin Menu completely" being selected’ is closed to new replies.