How can I display total item count on my cart page?

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 @Healthy_Snacks

Please follow these steps:

  • Search cart.liquid file in the edit code:

  • Add the following code {% for item in cart.items %} … {% endfor %}
{% 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.