How to show total cart item quantities in a cart

Hello,

If Product A has item.quantity = 3;

and product B has item.quantity = 9;

How can I show in the cart page that the total item.quantity is = 12. Is there any liquid code for showing all item.quantity total of a cart. or how do I show this on the cart page.

Thanks in advance.

hi @musfiq11

easy peasy!

as in liquid cart details

{{ cart.item_count }}

5 Likes

thank you for the info.