How can I turn off the view cart button for faster checkout?

Topic summary

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:

  • Another user (@KabirDev) shared a CSS code snippet to hide the button
  • The code should be added to the theme’s CSS file (such as base.css):
    .previewCartGroup .button-view-cart {
      display: none !important;
    }
    

Status: The original poster thanked the contributor, suggesting the solution was accepted. The discussion appears resolved.

Summarized with AI on November 13. AI used: claude-sonnet-4-5-20250929.

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.co

@Vizono add the below code to your theme’s CSS file like base.css

.previewCartGroup .button-view-cart {
    display: none !important;
}
1 Like

Thanks!