• Hi, thank you for the revolutionary plugin, I really like it sooo much,
    Do you have any idea why the items are duplicated sometimes?

    Screenshot:

    Anything I can do to debug, I’m ready, we need this fixed please.

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author gqevu6bsiz

    (@gqevu6bsiz)

    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

    Thread Starter tinyCoder

    (@tinycoder)

    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!

    Plugin Author gqevu6bsiz

    (@gqevu6bsiz)

    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

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Sidebar Menu Items Duplicated’ is closed to new replies.