Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LaurenaRehbein/01a582fd20bfddbc2ec8ed753191c326 to your computer and use it in GitHub Desktop.
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
<?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