PW gift cards and discounts plugin
-
On my site, I’m using the Woocommerce Dynamic Pricing plugin to provide certain customer group discounts.
To exclude products on sale I’m using the next filter:
function is_product_eligible( $eligible, $product, $discounter_name, $discounter_object ) { remove_filter( 'woocommerce_dynamic_pricing_process_product_discounts', 'is_product_eligible', 10, 4 ); if ( $product->is_on_sale() || <strong>CONDITION FOR GIFT CARD</strong> == true ) { $eligible = false; } add_filter( 'woocommerce_dynamic_pricing_process_product_discounts', 'is_product_eligible', 10, 4 ); return $eligible; }
How to add the condition to exclude Gift cards?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘PW gift cards and discounts plugin’ is closed to new replies.