How do I remove the checkout button from my pop-up cart?

Topic summary

A user wants to remove the checkout button from their pop-up cart while keeping the “view my cart” button visible.

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes
  • Click Actions → Edit code on the active theme
  • Open the CSS file in the Assets folder (base.css, style.css, or theme.css)
  • Add the following CSS code at the bottom:
#cart-notification-form > button {
  display: none;
}
  • Save the changes

The solution includes a screenshot showing the expected result. The responder requested marking the post as a solution if it helped.

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

Hello,

I want to remove the “checkout” button on the pop-up cart, and I need some help doing that. I don’t want to remove the pop-up cart only the checkout button. So that I am left with only “view my cart” button on the pop-up cart. Thank You -Anthony

www.turtapparel.com

1 Like

Hi @AnthonyAustin

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
#cart-notification-form > button {
    display: none;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!