Guest User

Untitled

a guest
Jan 23rd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. function woo_add_cart_fee() {
  3.  
  4. global $woocommerce;
  5.  
  6. $current_user = wp_get_current_user();
  7.  
  8. if ( in_array( 'residential', $current_user->roles, true) ) {
  9.  
  10. $woocommerce->cart->add_fee( __( 'Custom', 'woocommerce' ), 5 );
  11.  
  12. }
  13.  
  14. }
  15. add_action( 'woocommerce_cart_calculate_fees', 'woo_add_cart_fee' );
Add Comment
Please, Sign In to add comment