Hi,
I am trying to add conditional logic to the Order note on the cart drawer of the Expanse theme.
The order note should display ONLY if “Gift Wrap” is in the items listed in the cart.
I have added a tag “giftwrap” to the Gift Wrap product however, this code is not working.
Do you know why?
{% if settings.cart_notes_enable %}
{% assign ContainGiftwrap = false %}
{% for item in cart.items %}
{% if item.product.tags contains 'giftwrap' %}
{% assign ContainGiftwrap = true %}
{% endif %}
{% endfor %}
{% if ContainGiftwrap %}
{% endif %}
{% endif %}