Created
August 28, 2018 17:31
-
-
Save madeincosmos/1b42e48fd3aec10234e825a2148f89f6 to your computer and use it in GitHub Desktop.
Change Apple Pay language to English
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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