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
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.cssfile - 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; }
@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

