Hi,
I offer free next day delivery for any two items purchased.
If a customer only has 1 item in the cart, i’d like to add a prompting message: “add another item to get free next day delivery”.
is this in the cart or at checkout- how can i do this?
Using debut theme.
Cheers
You could do something as simple as
{% if cart.item_count == 1 %}
Add 1 more item to get free shipping!
{% endif %}
Maybe add either above the cart table or above the checkout button - both in sections/cart-template.liquid file in debut.
Thank you Jordan- it worked a treat. I have got it above the cart with a nice little border to attract attention. Cheers 