marcbdn
Forum Replies Created
-
The code works, but I need to add “From:” in front of the prices.
I have tried it, but both the original price and the discounted price appear with “From:” so it’s repeated…
I can’t get it to work…It looks like this:
From: 43,80€ (strikethrough) From: 32,85€Any idea how to fix it?
Code:
add_filter('advanced_woo_discount_rules_format_sale_price_range', function($html, $min_price, $max_price){ $html = 'From ' . wc_price($min_price); return $html; }, 10, 3);Thank you for providing the code snippet. I’ve implemented it and it works perfectly as intended!
Thanks again for your help!
PD:
The code works, but I need to add “From:” in front of the prices.
I have tried it, but both the original price and the discounted price appear with “From:” so it’s repeated…
I can’t get it to work…It looks like this:
From: 43,80€ (strikethrough) From: 32,85€Any idea how to fix it?
I’m really interested in implementing something similar for my site. Have you managed to resolve this issue or found a working solution?