I am trying to add a checkbox to appear above the sezzle option on my cart page. I would like it to say “I understand that if Route Insurance is not added to my cart, my order will be cancelled”. I am not a pro with coding so I’m not sure where to even begin.
https://denostumblerturnersllc.com/cart
This is my current code on the page
{% comment %}
The contents of the cart.liquid template can be found in /sections/cart-template.liquid
{% endcomment %}
{% section ‘cart-template’ %}
{% section ‘sezzle-widget’ %}
Hello @DenosTurnersLLC ,
Just before of this code ( {% section ‘sezzle-widget’ %} ) add this one
Note: This code will add options as you want but to match it with your theme setup you have to write css accordingly.
Thanks
It’s still below the payment options. Is there a way to move this above and also make it a mandatory checkbox they must check in order to proceed.
Yes there is way to add it there. If you want ti after subtotal then add the previously provided code after the scope of this code (
)
If you want it before checkout button then add it before this html (
)
And to make it mandatory, actually html required attribute is already in field but it’s not working here so you have to write custom JS to make it mandatory.