How can I add a number inside my cart bag on my website?

Hi I’m looking to add a number inside my cart.

my site is https://luxurymrkt.com

Hi @Luxurymrkt

You can go to your Online store > Themes > Edit code > open header.liquid file, find this “”, then add this code below that part

{% for item in cart.items %}
  {{ cart.items_count }}
{% endfor %}

Hi,

To show the number of items inside cart, you can find to place where is handling code showing the icon cart and add more code like this

{% if cart.empty == false %}
{{ cart.item_count }}
{% else %}
0
{% endif %}

I don’t have the in my header. is there another file to check