Hi
Is it possible to add a total cart items line to the cart page?
Brooklyn theme.
I think its something to do with cart.item_count ?
website https://healthysnacks.nz/
Hi
Is it possible to add a total cart items line to the cart page?
Brooklyn theme.
I think its something to do with cart.item_count ?
website https://healthysnacks.nz/
Please follow these steps:
{% assign totalQty = 0 %}
{%- for item in cart.items -%}
{% assign totalQty = totalQty | plus: item.quantity %}
{%- endfor -%}
Total quantity: {{ totalQty }}
Here is the result:
I hope that it will work for you.