This topic has 4 replies, 2 voices, and was last updated 3 years, 5 months ago ago by Rose Tyler
Hello there. I’m using the Gravity Forms add-on for Woocomerce. It allows to shows the form on the product page which important feature for our business. Unfortunately, I can correctly place the price next to the “Add to Cart” button. I’ve used single page builder but it doesn’t take into considaration the form and show the price before it (the form) On the screenshot you can see another price which is provided by Gravity Form. I’m not sure if it can be merged with Woocomerce price. If there is no way to move it there I would rather hide the woocomerce price. Thank you.
Hello,
Use this custom CSS code to hide the price:
.single-product .et_product-block > .price {
display: none;
}
Regards
Hello Rose,
Thank you for your reply. Unfortunately, it also affects simple products and makes the price invisible. Any way I can apply it for a certain category or type of product?
Thank you.
Hello,
Please try this code:
.single-product .has-default-attributes .price {
display: none;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up