Advertisement
verygoodplugins

Untitled

Nov 17th, 2020
679
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. function my_coupon_logic( $auto_apply, $coupon_id, $user_id ) {
  2.  
  3.     if ( wpf_has_tag( 'One', $user_id ) && wpf_has_tag( 'Two', $user_id ) ) {
  4.         $auto_apply = true;
  5.     } else {
  6.         $auto_apply = false;
  7.     }
  8.  
  9.     return $auto_apply;
  10.  
  11. }
  12.  
  13. add_filter( 'wpf_auto_apply_coupon_for_user', 'my_coupon_logic', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement