Reply To: How to make the call for price text appear on only one of the variable options?

Top WooCommerce & WordPress Plugins 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?

#98740
Tom Anbinder
Moderator
Plugin Support

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.