Skip to content

Instantly share code, notes, and snippets.

@femiyb
Created November 6, 2024 10:14
Show Gist options
  • Save femiyb/49a878bdef049aaf64e7b8140e72c9d6 to your computer and use it in GitHub Desktop.
Save femiyb/49a878bdef049aaf64e7b8140e72c9d6 to your computer and use it in GitHub Desktop.
hides the PayPal button on single product pages for products in a specific category
function ppcp_remove_single_product_buttons( $enable_button, $product ) {
if ( has_term( 'excluded-category-slug', 'product_cat', $product->get_id() ) ) {
$enable_button = false;
}
return $enable_button;
}
add_filter( '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