I want to disable the view cart button at the bottom. So that the customer can checkout quickly.
Can anyone help me with this? Thanks.
A user wants to remove the “View Cart” button from their store to streamline the checkout process, allowing customers to proceed directly to checkout more quickly.
Solution Provided:
.previewCartGroup .button-view-cart {
display: none !important;
}
Status: The original poster thanked the contributor, suggesting the solution was accepted. The discussion appears resolved.
I want to disable the view cart button at the bottom. So that the customer can checkout quickly.
Can anyone help me with this? Thanks.
Hi,
Can you share your store url please to be able to assist you.
@Vizono add the below code to your theme’s CSS file like base.css
.previewCartGroup .button-view-cart {
display: none !important;
}
Thanks!