Created
August 28, 2018 17:28
-
-
Save madeincosmos/4e9c047c8433bccce931f0facb4dbe41 to your computer and use it in GitHub Desktop.
Remove 'via WooCommerce' from Apple Pay
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 remove_apple_pay_label_suffix( $stripe_params ){ | |
return ''; | |
} | |
add_filter( 'wc_stripe_payment_request_total_label_suffix', 'remove_apple_pay_label_suffix' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment