Viewing 7 replies - 1 through 7 (of 7 total)
  • Same here. You don’t need both. Adminimize does the lot. Add roles using “User role editor” plugin.

    Thread Starter samdg

    (@samdg)

    I needed Admin Menu Editor to reorder the menu. Adminimize can’t do that, neither can User role editor ??

    If you cant hide some specific item with Adminimize hide it with Admin Menu Editor. Even free version has it (capability). I had problem with Adminimize-AME conflict and Adminimize could not hide Meta Slider theme editor submenu item. I hide it with AME.

    Perhaps AG Custom Admin might help those that are having issues with Adminimize clashing with Admin Menu Editor. Worked great for me! Check it out.

    https://www.ads-software.com/plugins/ag-custom-admin/

    Good luck!

    I used the Jetpack Only for Admins. This a simple plugin for hides Jetpack for all non admin users.

    https://www.ads-software.com/plugins/jetpack-only-for-admins/

    @gustav, you need only one of these.

    function custom_network_delete_jetpack_menu() {
            if ( ! current_user_can( 'manage_network' ) ) {
                    remove_menu_page( 'jetpack' );
            }
    }
    add_action ( 'admin_menu', 'custom_network_delete_jetpack_menu', 999 );
    function custom_network_delete_jetpack_menu() {
            if ( ! current_user_can( 'manage_options' ) ) {
                    remove_menu_page( 'jetpack' );
            }
    }
    add_action ( 'admin_menu', 'custom_network_delete_jetpack_menu', 999 );
    Plugin Author Frank Bueltge

    (@bueltge)

    New question. Maybe I found a issue, bug. have you delete the default editor role? Currently I debug on other installations and always is this the problem.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Adminimize doesn't work with Admin Menu Editor’ is closed to new replies.