Advertisement
xah

Hide coupon code for students

xah
Jul 14th, 2020 (edited)
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. add_filter( 'woocommerce_coupons_enabled', 'disable_coupon_field_student' );
  2. function disable_coupon_field_student( $enabled ) {
  3.      if ( in_array( 'administrator', (array) $user->roles ) || in_array( 'Student', (array) $user->roles ) || in_array( 'shop_manager', (array) $user->roles )) {
  4.         $enabled = false;
  5.     }
  6.     return $enabled;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement