This topic has 4 replies, 2 voices, and was last updated 7 years, 7 months ago ago by Olga Barlow
Can you tell me how to remove price range in variable product?
Hello,
If variations of the variable product have different prices it’s not possible to remove price range, this is default WC functionality. You can only hide it using custom CSS.
Regards
How to hide it?
Hello,
Try this code (Theme Options > Styling > Custom CSS)
.product-type-variable .product-information-inner .price {
display: none;
}
.product-type-variable .woocommerce-variation-price .price {
display: block !important;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up