Viewing 1 replies (of 1 total)
  • Plugin Author Payment Plugins

    (@mrclayton)

    Hi @messaone,

    The Stripe inline form you are using uses the locale of the browser by default. You can customize that behavior using the plugin’s provided filters.

    Filter: wc_stripe_get_element_options.

    Example:

    add_filter('wc_stripe_get_element_options', function($options){
        $options['locale'] = 'en-US';
        return $options;
    });

    Kind Regards,

Viewing 1 replies (of 1 total)
  • The topic ‘Translation input card number field’ is closed to new replies.