We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
All products in the store I'm working on have tags on them yet they are all undefined in CartJS.cart
quantity: 3 requires_shipping: true sku: "6878682" tags: undefined taxable: true title: "Origins India" total_discount: 0
I can see the tags when I use normal liquid syntax.
{% for item in cart.items %} {{item.product.handle}} {% for tag in item.product.tags %} {{tag}} {% endfor %} {% endfor %}
Is this a bug or is there something required in init to access tags?
If not is there a way to get the handle from CartJS and access {{ all_products[CartJS.cart.items[index].product.handle].tags }}?
{{ all_products[CartJS.cart.items[index].product.handle].tags }}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
All products in the store I'm working on have tags on them yet they are all undefined in CartJS.cart
I can see the tags when I use normal liquid syntax.
Is this a bug or is there something required in init to access tags?
If not is there a way to get the handle from CartJS and access
{{ all_products[CartJS.cart.items[index].product.handle].tags }}
?The text was updated successfully, but these errors were encountered: