Created
February 28, 2019 20:13
-
-
Save LaurenaRehbein/01a582fd20bfddbc2ec8ed753191c326 to your computer and use it in GitHub Desktop.
Use this to remove the Google Pay and Apple Pay buttons from the Single Product Pages, when using Stripe
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
<?php | |
add_filter( 'wc_stripe_hide_payment_request_on_product_page', 'lar_wc_stripe_hide_payment_request_on_product_page' ); | |
function lar_wc_stripe_hide_payment_request_on_product_page() { | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment