How do i hide my Add to cart store button? https://nttdata.companybrandstore.com/
Hello @ankursingh
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
a#cart-icon-bubble {
display: none !important;
}
If solution is helpful to you please like post
Thanks but I want to hide the “add to cart” button from my store also I just want the “buy now” button there. What do I do in that case?
Please help
@ankursingh add below css instead of previous added css
.product-form__submit {
display: none;
}
Thanks
How do I hide the price on the checkout page?
Hello @ankursingh
your site is password protected, please share the password so I can review it and provide a solution.
Hello @ankursingh
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
For total Price
._5uqybw2._1fragem16._1fragem9f._1fragem1q._1fragem26._1fragem3._1fragem34 {
display: none;
}
For subtotal price
span._19gi7yt0._19gi7yte._1fragem1i._19gi7yt1.notranslate {
display: none;
}
For Product price
span._19gi7yt0._19gi7yte._1fragem1i.notranslate {
display: none;
}