3
votes

Please check the screenshot .and tell me how can i show the single variation product price below the dropdown. Screenshot : http://prntscr.com/aow01b

Thanks Junaid

1
This question is too broad. What have you tried already? Please post your work-in-progress implementation. - JAL
It's preferable that you don't put your entire question text in an image; you can use the image to point out things, but you have two paragraphs of text in there that no one is going to see. - mejdev

1 Answers

11
votes

@Junaid, to show variation price even if all variations are the same price or you have just a single variation price try with below code in your theme's functions.php

add_filter('woocommerce_show_variation_price', function() {return true;});