How can I remove the 'Proceed to Checkout' button in Craft theme?

After the customer clicks “add to cart”, a pop-up will show, is it possible to delete the “Proceed to Checkout” button, I will need my customer to go to the cart page for some implemented features.

My website is: https://mzbooks.shop/

The theme we are using is Craft.

Thank you for your help.

Hey @Monsoonzone ,

This should work for you :blush:

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.


Screenshot is for reference only, the correct code to paste is the one shown above.

It work perfectly, thank you so much.

If you are looking to remove just the checkout button you can

  1. go to theme code editor

  2. look for “cart-notification template”

  3. Find the following code and comment it out

{%comment%}

{{ ‘sections.cart.checkout’ | t }}

{%endcomment%}