Skip to content

Instantly share code, notes, and snippets.

@InpsydeNiklas
Created August 24, 2022 22:48
Show Gist options
  • Select an option

  • Save InpsydeNiklas/14c1b788301f8ffbaad4e37ca9092ed3 to your computer and use it in GitHub Desktop.

Select an option

Save InpsydeNiklas/14c1b788301f8ffbaad4e37ca9092ed3 to your computer and use it in GitHub Desktop.
disable PayPal Payments smart buttons on single product page for WooCommerce Bookings product
<?php
// removes PayPal smart buttons on single product page for bookable type products from WooCommerce Bookings plugin
function ppcp_remove_single_product_buttons( $enable_button, $product ){
if ( $product->is_type( 'booking' ) ) {
$enable_button = false;
}
return $enable_button;
}
add_action( 'woocommerce_paypal_payments_product_supports_payment_request_button', 'ppcp_remove_single_product_buttons', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment