Skip to content

Instantly share code, notes, and snippets.

@madeincosmos
Created August 28, 2018 17:31
Show Gist options
  • Save madeincosmos/1b42e48fd3aec10234e825a2148f89f6 to your computer and use it in GitHub Desktop.
Save madeincosmos/1b42e48fd3aec10234e825a2148f89f6 to your computer and use it in GitHub Desktop.
Change Apple Pay language to English
function change_apple_pay_button_language( $stripe_params ){
return 'en';
}
add_filter( 'wc_stripe_payment_request_button_locale', 'change_apple_pay_button_language' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment