Advertisement
eventsmanager

Enable stripe coupon when using stripe checkout

May 16th, 2024
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2.  
  3. function my_em_stripe_coupon($stripe_checkout,$EM_Booking){
  4. $stripe_checkout['allow_promotion_codes'] = true;
  5. return $stripe_checkout;
  6. }
  7. add_filter('em_gateway_stripe_checkout_session_vars', 'my_em_stripe_coupon', 100,2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement