Exclude strikeout for specific product type
Exclude strikeout for specific product types.
function woo_discount_rules_exclude_product_type_for_sale_price_strikeout_adjustment_method($exclude_product_type, $product){
$exclude_product_type[] = 'auction';
return $exclude_product_type;
}
add_filter('woo_discount_rules_exclude_product_type_for_sale_price_strikeout_adjustment', 'woo_discount_rules_exclude_product_type_for_sale_price_strikeout_adjustment_method', 10, 2);