Viewing 1 replies (of 1 total)
  • Dford, I was facing the same issue but guessed it might be issue related to Menu Position so I searched the same in code and found the code on file plugindirectory/includes/post-type.php line no 76 and removed it so that it should take default position.

    Replace

    'show_ui'             => true,
    'show_in_menu'        => true,
    
    'menu_position'       => 75, // Below tools
    'menu_icon'           => $this->plugin->plugin_url . 'img/logo.png',
    'can_export'          => true,

    with

    'show_ui'             => true,
    'show_in_menu'        => true,
    
    'menu_icon'           => $this->plugin->plugin_url . 'img/logo.png',
    'can_export'          => true,

Viewing 1 replies (of 1 total)
  • The topic ‘Not showing dashboard menu’ is closed to new replies.