• I’ve used the Pro plugin on multiple websites and find it works well and is easy to configure. The chat support was very helpful. They helped me troubleshoot a couple of issues and provided code to help me customise the plugin performance. I wanted to display the discounted price and remove the strikeout original price. The following code added to functions.php in the child theme folder achieved this.

    // Woo Discount Rules: Show only discount price add_filter(‘advanced_woo_discount_rules_strikeout_price_html’, function ($html, $original_price, $discounted_price, $is_variable_product, $initial_price_html, $separator) { if ($original_price != $discounted_price){ $html = ‘<ins>’ . $discounted_price . ‘</ins>’; } return $html; },10,6);

    when applying this code, I left “Show strikeout price” in Settings > Product checked for all pages.

The topic ‘Great plugin and excellent support’ is closed to new replies.