Hi tinyCoder,
Thank you for your inquiry.
I think your customize setting is maybe duplicate sidebar menu items of WP Admin UI Customize.
Could you please check to duplicated sidebar items or re-settings sidebar after reset sidebar customize settings?
Thanks,
gqevu6bsiz
Hi, I have the duplicated items only on EDUCATION SYSTEM menu which is LearnDash plugin, If I reset the menu and rebuild it again, the duplicate comes back only to LearnDash menu!
Thank you for your reply and check.
I think to duplicated items only specific plugin, maybe menu arrangement is different from normally.
i.e.) Specific plugin is using invisible menu items, not used menu…
Could you please check to duplicated items to global “$submenu” on your website?
If you found duplicated items to $submenu on your website, please try working temporary remove duplicated items.
e.g.)
function remove_specific_plugin_menu() {
// specific-plugin-menu-name is your using plugin menu
if( isset( $submenu[ "specific-plugin-menu-name" ] ) ) {
unset( $submenu[ "specific-plugin-menu-name" ] );
}
// Debug
// print_r( $submenu );
}
add_action( 'admin_head' , 'remove_specific_plugin_menu' );
Thanks,
gqevu6bsiz