Change WordPress user roles and capabilities › Forums › How to or FAQ › Settings to show WP admin Bar on Front End › Reply To: Settings to show WP admin Bar on Front End
19/02/2020 at 14:24
#6638
Keymaster
Code for membership_manager role only will be looked this way:
add_filter( 'woocommerce_disable_admin_bar', '_wc_disable_admin_bar', 10, 1 );
function _wc_disable_admin_bar( $disable ) {
$user = wp_get_current_user();
if ( !is_a( $user, 'WP_User') || !is_array( $user->roles ) ) {
return $disable;
}
if ( !in_array( 'membership_manager', $user->roles ) ) {
return $disable;
}
return false;
}