Disable strikeout for YITH bundle products
Prevent strike-through pricing for YITH bundled products.
add_filter('advanced_woo_discount_rules_disable_strikeout_for_product_types', function ($product_types) {
$product_types[] = 'yith_bundle';
return $product_types;
}, 10);