Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // Attempt to generate a coupon code
  2. $coupon_code = $this->generate_coupon( $user_id, $coupon_total );
  3.  
  4. // If a coupon code was successfully generated, apply it
  5. if( $coupon_code ) {
  6. WC()->cart->add_discount( $coupon_code );
  7. wp_redirect( remove_query_arg( 'affwp_wc_apply_credit' ) ); exit;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement