Hi Anastasio,
Thanks for your reply.
The snippet that was added to the functions.php is:
add_filter( 'wc_stripe_elements_options', 'wc_update_locale_in_stripe_element_options' );
function wc_update_locale_in_stripe_element_options( $options ) {
return array_merge(
$options,
array(
'locale' => 'es',
)
);
};
I have checked with browsers with different locales and it is still showing those labels in english. I undestand the previous snippet overrrides the locale for the language assigned.
Do you know of anything else that can be happening here?