Remove "View Cart" button
-
Hi, is there anyway to remove the “view cart” button from mobile view?
I am using custom css to hide the button, it is only working on desktop but fail on mobile device.
Please advise, thank you.
Attachments:
You must be
logged in to view attached files.
Hi,
Try to add the following code snippet to the Mobile Custom CSS area in Theme Settings to fix this issue.
.popup-added_to_cart .view-cart {
display: none;
}
body .cart-widget-side .shopping-cart-widget-footer {
padding-bottom: 0;
}
.cart-widget-side .shopping-cart-widget-footer > .buttons {
display: none;
}
Regards