Enable stripe coupon when using stripe checkout
<?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