eventsmanager icon

Enable stripe coupon when using stripe checkout

eventsmanager | PRO | 05/17/24 03:22:06 AM UTC | 0 ⭐ | 438 👁️ | Never ⏰ | []
text |

230 B

|

None

|

0 👍

/

0 👎

<?php
 function my_em_stripe_coupon($stripe_checkout,$EM_Booking){
 $stripe_checkout['allow_promotion_codes'] = true;
 return $stripe_checkout;
}
add_filter('em_gateway_stripe_checkout_session_vars', 'my_em_stripe_coupon', 100,2);

Comments