I am launching a brand on shopify plus soon, and i want to be able to give customers the option to view only my products in the soft launch phase. This is not a form of pre booking though. I want to be able to hide add to cart button and i don’t have a coder or developer on board. i was hoping a plug in or app would help with this. any suggestions?
Hello @FashionRetail ,
Please share the store URL so I can provide the css code.
You have to just place it in the css file and later when you find you are ready to make it visible again you have to remove it from the css file.
Or alternatively you can hire a developer who can do same for you or can create an option in theme settings to manage it so you can manage it without editing the code.
Thanks
Hi @Guleria I website URL still isn’t live since i have not made it live yet. Just a coming soon banner for now
https://awalofficial.com/
Maybe you can share the css code and i can find out how to place it there. would be of great help. thanks
Follow these steps:
-
Go to Online Store → Theme → Edit code
-
Open your theme.css file and paste the following code below:
.shopify-product-form button {
display: none;
}
.product__submit {
display: none;
}
thanks @Guleria i can paste this at the end of the current code or do i need to scroll and paste it at a certain point in the code?
Scroll down and without making any change in existing code paste the new one.