Removing extra "Proceed to Checkout" button from Cart

Topic summary

A user is experiencing a duplicate “Proceed to Checkout” button issue in their cart and wants to remove the top one.

Solution Provided:

  • Another user suggested adding custom CSS code to the theme.scss.css file
  • The CSS targets the specific button with display and visibility properties to hide it

Status:

  • A technical solution has been offered but not yet confirmed as resolved
  • The fix involves adding:
    .template-cart .section-header_1.grid .btn_checkout {
      display: none;
      visibility: hidden;
    }
    
Summarized with AI on November 18. AI used: claude-sonnet-4-5-20250929.

I am getting 2 Proceed to checkout buttons in my cart. I want to delete the one which is at the top.
Can anyone guide, because in theme editing I am unable to find any option.
URL is zizerstore.com

@hunainkhan - please add this css to the very end of your theme.scss.css file and check

.template-cart .section-header_1.grid .checkout_btn{display:none; visibility:hidden;}

1 Like