#2491
Vladimir
Keymaster

Hi Jawad,

It’s a bug of that plugin, which shows its empty menu to any user without ‘manage_options’ capability. Until it’s not fixed by developer you may remove this menu item for all users without ‘manage_options’ capability by adding this code into the active theme functions.php file or setup it as a must use plugin:


add_action('admin_menu', 'yit_menu_fix', 100);

function yit_menu_fix() {
  
  if (!current_user_can('manage_options')) {
    remove_menu_page('yit_plugin_panel');
  }
  
}