Change WordPress user roles and capabilities › Forums › Bug Reports › YITH Plugin Admin Menu › Reply To: YITH Plugin Admin Menu
05/07/2016 at 02:56
#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');
}
}