Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter cough81

    (@cough81)

    Hi, thank you the code provided didn’t work.

    But with a small change, I got it to work.

    add_filter( ‘woocommerce_variable_price_html’, ‘bbloomer_variation_price_format_min’, 4, 100 );
    add_filter(‘advanced_woo_discount_rules_format_sale_price_range’, function($html, $min_price, $max_price){
    $html = wc_price($min_price);
    return $html;
    }, 10, 3);

    Thank you for being so helpful this above code works for me

Viewing 1 replies (of 1 total)