eventsmanager icon

Pass language to stripe

eventsmanager | PRO | 09/13/23 08:39:17 AM UTC (Edited) | 0 ⭐ | 1350 👁️ | Never ⏰ | []
text |

340 B

|

None

|

0 👍

/

0 👎

/* 
 * Pass language to stripe 
 * Supported language: https://support.stripe.com/questions/supported-languages-for-stripe-checkout
 */
function my_em_stripe_locale($stripe_checkout,$EM_Booking){
 $stripe_checkout['locale'] = "de";
 return $stripe_checkout;
}
add_filter('em_gateway_stripe_checkout_session_vars', 'my_em_stripe_locale', 100,2);

Comments