Skip to content

Instantly share code, notes, and snippets.

@rashmimalpande
Last active October 10, 2018 09:26
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 rashmimalpande/116abfd9067d653d5fde4ca1cc1d264d to your computer and use it in GitHub Desktop.
Save rashmimalpande/116abfd9067d653d5fde4ca1cc1d264d to your computer and use it in GitHub Desktop.
<?php
add_filter( 'woocommerce_coupons_enabled','ts_hide_coupon_field_on_cart' );
function ts_hide_coupon_field_on_cart( $enabled ) {
$product_ids = array(8, 55, 57);
$cart = WC()->cart->get_cart();
foreach ( $cart as $id => $cart_item ) {
if( in_array( $cart_item[ 'data' ]->get_id(), $product_ids ) ) {
return false;
}
}
return $enabled;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment