That looks like a variable product type:
http://docs.woothemes.com/document/variable-product/
Each quantity you offer must be set up as a product variation.
The drawback is that automated stock control is not possible without a plugin.
Good now it is working. But, price range is showing on prduct page (eg Rs 40-200 is selling price). I want to show only minimum price, not the entire range. How can I do it. Please help.
Please post a link to a relevant page.
I just want to show only minimum price, not to show the entire price range of the product. Please see the marked in this picture. http://www.screencast.com/t/kFO7jLnzRV
I am also giving my product page link [http://www.sabziadda.com/shop/vegetables/onion/].
Now I think it is understandable to you.
The method is to hide the whole line, then turn on just the bits that you want. Try this in your custom css:
.product_price {visibility:hidden}
.product_price .amount:first-child {visibility:visible}
.product_price .amount:nth-child(2) {display:none}
.product_price .woocommerce-price-suffix {visibility:visible}
If your theme does not have a setting where you can enter custom css, you can use a plugin like this one:
https://ww.wp.xz.cn/plugins/simple-custom-css/
Check for unwanted effects elsewhere.
Thank you. Its working now.