mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
https://stackoverflow.com/questions/77169767/hide-woocommerce-admin-submenu-home-from-shop-manager/77174016
8 lines
344 B
Text
8 lines
344 B
Text
add_action( 'admin_menu', 'disable_admin_woocommerce_home_for_user_role', 999 );
|
|
function disable_admin_woocommerce_home_for_user_role() {
|
|
$targeted_role = 'shop_manager'; // Here define the user role
|
|
|
|
if (current_user_can( $targeted_role ) && ! isset($_GET['path'])) {
|
|
remove_submenu_page( 'woocommerce', 'wc-admin' );
|
|
}
|
|
}
|