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://ww.wp.xz.cn/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://ww.wp.xz.cn/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 );
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.