WooCommerce: Always Show Single Variation Price @ Single Product

When a variable product has the same price for all variations, a unique price is shown to website users i.e. the one at the top of the page. However, this behaves differently when each variation has its own unique price – in this case the single variation price shows after a variation is selected.

Now, this can be good or this can be bad – it depends. So in this snippet we’ll see a quick fix to make this behavior consistent i.e. showing the variation price after selection every time, no matter the conditions.

Thankfully, it’s literally one line of PHP. Enjoy!

Always display the single variation price on the WooCommerce Single Product Page

PHP Snippet: Always Display Single Variation Price @ WooCommerce Single Product Page

/**
 * @snippet       Always Show Variation Price @ WooCommerce Single Product
 * @how-to        businessbloomer.com/woocommerce-customization
 * @author        Rodolfo Melogli, Business Bloomer
 * @compatible    WooCommerce 8
 * @community     https://businessbloomer.com/club/
 */
 
add_filter( 'woocommerce_show_variation_price', '__return_true' );

Where to add custom code?

You should place custom PHP in functions.php and custom CSS in style.css of your child theme: where to place WooCommerce customization?

This code still works, unless you report otherwise. To exclude conflicts, temporarily switch to the Storefront theme, disable all plugins except WooCommerce, and test the snippet again: WooCommerce troubleshooting 101

Related content

Rodolfo Melogli

Business Bloomer Founder

Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza. Follow @rmelogli

28 thoughts on “WooCommerce: Always Show Single Variation Price @ Single Product

  1. Hi, that not work fir me. Elementor Pro, WoCommerce last update on Hello theme.

    1. If it works without Elementor, then the problem is Elementor

  2. Thank you ! it’s working like a charm

  3. Unfortunately it’s not working, I am using Divi and Woocommerce.

    1. Does it work if you temporarily switch to another theme? I fear it may be because of Divi

  4. Hi.
    Interesting!! But is it possible to always show instead the quantity of product of the single variation for a single product?

    1. Hello Laura, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!

  5. I am using DIVI and Woocommerce

    Worked perfectly for me

    Thanks

    1. Great!

  6. Worked like a charm

    1. Cool!

  7. Hi:
    I’m using woocommerce 3.8.1 and It’s not working.
    Thanks

    1. Screenshot please?

      1. Does this still work? Did he have a valid issue?

        1. Should work, yes

  8. Is it possible to get this to show on the product archive page? So that it shows the lowest variation with each product on the archive pages?
    Thank you!

    1. Hello Kodi, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!

  9. Hello,

    It is also possible to create something where you can show the lowest price and highest price but separately?

    So for in my case where someone can rent a product for a specific time:

    Buy product: €500 = highest price
    rent 10 months: €60 = lowest price

    Regards,

    Melle

    1. Hello Melle, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!

  10. It was breaking my mind! THANK YOU!
    Ps: Working on Elementor + GP

    1. Great!

  11. Hi Rodolfo,
    It does not work either on Storefront

    A greeting

  12. Hi
    I tried this snippet on my website but it does not work.

    using storefront.

    1. Hey there, works for me on Storefront. Please note this snippet: “shows the variation price AFTER SELECTION every time, no matter the conditions”

  13. Hai, I already tried this snippet on my website but it does not work.

    I am using Ocean WP theme for your information.

    Is there is additional code should I add in order it to work.

    By the way, cool stuff ..

    Thank you

    1. Hi Mark! I’m not familiar with Ocean WP, anyway you need to check if they override default WooCommerce functions including this one, and in that case slightly modify the snippet accordingly. Hope this helps

Questions? Feedback? Customization? Leave your comment now!
_____

If you are writing code, please wrap it like so: [php]code_here[/php]. Failure to complying with this, as well as going off topic or not using the English language will result in comment disapproval. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining the Business Bloomer Club to get quick WooCommerce support. Thank you!

Your email address will not be published. Required fields are marked *