Hi
How do I hide the check out button on the cart slide out?
I only want customers to be able to check out trough going to the cart page.
Hi
How do I hide the check out button on the cart slide out?
I only want customers to be able to check out trough going to the cart page.
Hello @amouseytale
Go to online store ----> themes ----> actions ----> edit code---->base.css
add this code at the end of the file.
.qsc2-btn.qsc2-checkout-button {
display: none !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
@amouseytale Please follow below steps to hide checkout button in cart drawer. Let me know whether it is helpful for you.
.qsc2-drawer-footer__summary button.qsc2-checkout-button {
display: none;
}
Result will be like,
Please provide your support by click “Like” and “Accepted” if our solution works for you. Thanks for your support.