• Resolved cough81

    (@cough81)


    Hi

    I would like to display just the minimum price for variable products

    I have tried all your methods in the forum with no luck

    thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,
    Thank you for reaching out.

    Are you trying to show the least price ?
    Using our plugin it is only possible to show least price for variable products which have discount.

    Have you tried the below snippet ?
    https://gist.github.com/AshlinRejo/0558be8cc36d3106a45fcf2c273735f1

    You can add it via code snippets plugin.
    Here is a guide which might be of helpful: 
    https://docs.flycart.org/en/articles/2404915-using-code-snippets-plugin

    Can you have a check and let us know if that helps ?

    Thanks
    Team Flycart

    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

    Thanks for letting us know. 🙂

    Feel free to reach us out in case of any further queries.
    We would be glad to assist you.

    Thanks
    Team Flycart

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Display minimum price’ is closed to new replies.