Can’t change the checkout form language
-
Added this filter but it doesn’t change the language on checkout
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’ => ‘tr’,
)
);
};
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Can’t change the checkout form language’ is closed to new replies.