I am trying to edit the ajax-cart-template.liquid to achieve so each item will show the tags..
I am trying to get everytime user add item to cart, we show an item related to it based on the tags. and I used
{% for item in cart.items %}{% for tag in item.product.tags %}{{ tag }}, {% endfor %}{% endfor %}
but some how the products are not listing based on every user click add to cart?
is there any way to solve this?
thank you