Hi,
Is there a way to remove the product price from showing in the “bundle product” section.
A user seeks to hide product prices displayed in their Shopify store’s bundle product section.
Solutions Provided:
Two working CSS solutions were offered:
.bundle-product .product-description .price { display: none !important; } to the section’s Custom CSS field.bundle-products .product-container .price{display:none !important;visibility:hidden;} at the end of the base.css fileOutcome:
The issue was resolved. The user initially reported the first solution didn’t work due to copying the code incorrectly, but confirmed success after applying it properly. An image was shared showing the bundle section where prices needed removal.
Hi,
Is there a way to remove the product price from showing in the “bundle product” section.
Hi @Gypsymoon
You can do that by adding this code to Custom CSS of that section
bundle-product .product-description .price { display: none !important; }
@Gypsymoon - can you please share the page link of the bundle product?
Hi,
I shared it above, you’ll just need to scroll down the page as it’s a section on the homepage ![]()
Hi,
thank you, unfortunately that didn’t work
Could you show me where did you add the code?
That did work!! Sorry, I copied it wrong! Thank you soooo much!!
@Gypsymoon - add this css to the very end of your base.css file and check
.bundle-products .product-container .price{display:none !important; visibility:hidden;}
Very welcome, @Gypsymoon