Solved

Prompting customer to add one more item to their cart to get free next day delivery

Annabee
Excursionist
33 3 4

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

Accepted Solution (1)

jordanholmes
Shopify Expert
152 28 31

This is an accepted solution.

You could do something as simple as

{% if cart.item_count == 1 %}

<p>Add 1 more item to get free shipping!</p>

{% endif %}

Maybe add either above the cart table or above the checkout button - both in sections/cart-template.liquid file in debut.

Jordan Holmes
Shopify Expert and Ruby on Rails Developer
Shopify Partner Directory

View solution in original post

Replies 2 (2)

jordanholmes
Shopify Expert
152 28 31

This is an accepted solution.

You could do something as simple as

{% if cart.item_count == 1 %}

<p>Add 1 more item to get free shipping!</p>

{% endif %}

Maybe add either above the cart table or above the checkout button - both in sections/cart-template.liquid file in debut.

Jordan Holmes
Shopify Expert and Ruby on Rails Developer
Shopify Partner Directory
Annabee
Excursionist
33 3 4

Thank you Jordan- it worked a treat.  I have got it above the cart with a nice little border to attract attention. Cheers 🙂