Home › Forums › Call for Price for WooCommerce › How to make the call for price text appear on only one of the variable options? › Reply To: How to make the call for price text appear on only one of the variable options?
October 17, 2018 at 7:22 pm #98740
Hi Armen,
Not sure that I understood it correctly, but if you mean “main” variable product price (i.e. price range – if you have different prices for variations, or single price if you have same prices for all variations), then I would suggest just hiding it with CSS. E.g.:
p.price { display: none !important; }
or with more specification:
.single-product div.product-type-variable p.price { display: none !important; }
Hope that helps and please let me know if I misunderstood you.