How do I remove the colored number showing qty. in cart (next to the search box) while still keeping the other one in place?

How do I remove the colored number showing qty. in cart (next to the search box) while still keeping the other one in place?
> To remove the one next to the search box:
- Go to Themes > Template Editor > theme.liquid
- Search for this text using CTRL+F: 'icon-shopping-cart icon-white'
- This should take you to around line 112 of theme.liquid.  You should see:

<li><a href="/cart"><i class="icon-shopping-cart icon-white"></i> <span class="cart-item-total badge badge-info">{{ cart.item_count }}</span></a></li>

- Wrap that line in some comment tags <!--- commented out stuff goes here ---> like that, so that the line will now look like this:

<!-- <li><a href="/cart"><i class="icon-shopping-cart icon-white"></i> <span class="cart-item-total badge badge-info">{{ cart.item_count }}</span></a></li>-->

That should remove it from there.

Have more questions? Submit a request

0 Comments

Please sign in to leave a comment.
Powered by Zendesk