Hi there!
I’m looking to remove the “Buy Now”/“Sold Out” button from my product page as I want it to ONLY display information for our products. This is because we sell bespoke products are all pricing is a base line, therefore I would need people to contact us directly to order. See the image for what I’m looking to remove.
A lot of the help I’ve seen online doesn’t seem to work anymore.
Thanks in advanced!
Product Link: https://exsimuk.myshopify.com/products/exsim-vr5
Pass: berry
Hi @AlexMoutrie ,
go to edit code > assets > theme.scss.css and add this:
.product__add-to-cart-button{
display:none!important
}
1 Like
Hi @AlexMoutrie ,
- To remove the add to cart button, please add this code to the Assets/theme.scss.liquid file in your theme code editor then save it.
.product-form__item~.shopify-payment-btn {
display: none !important;
}
- To remove the “Tax included” from your product page, please open the theme language editor, navigate to the Products tab, and scroll down to delete that text. Finally, click Save.
I hope it helps.
1 Like