Why isn't my code hiding the delete product icon in the cart?

Why isn't my code hiding the delete product icon in the cart?

ColombiaDev
Shopify Partner
200 11 26

I want to hide the icon to delete the product in the cart but what I have tried does not work for me, c'aul could it work and what will be the problem of my code? please.

 

{% if product.id == 8197916033311 %}
{% render 'icon-remove' %}
{% endif %}

 

or 

 

{% if item.id == 8197916033311 %}
{% render 'icon-remove' %}
{% endif %}

 

or

 

{% for item in cart.items %}
{% if item.tags contains "tag" %}
{% render 'icon-remove' %}
{% endif %}
{% endfor %}

 

 

Thank you.

hulpify.com | Shopify Partners | Front-end Developer | Shopify | Liquid | Ruby | Javascript | API Rest | SEO | Optimización.
Replies 4 (4)

made4Uo
Shopify Partner
3873 718 1222

Hi @ColombiaDev 


Depending on which theme you are using. I see your are trying to add a condition for the icon remove to hide/show. 

 

You need to find your cart items code in your theme. Then find the icon remove. The code below should work 

{% for item in cart.items %}
{% if item.id == 8197916033311 %}
{% render 'icon-remove' %}
{% endif %}
{% endfor %}

 

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free
ColombiaDev
Shopify Partner
200 11 26

Captura.PNGCaptura_1.PNGCaptura_2.PNGIt doesn't work, what could it be?

 

 

hulpify.com | Shopify Partners | Front-end Developer | Shopify | Liquid | Ruby | Javascript | API Rest | SEO | Optimización.
made4Uo
Shopify Partner
3873 718 1222

Oh. You need to add this to your cart code, you might need someone to do this for you if you are unable to locate the code

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free
ColombiaDev
Shopify Partner
200 11 26

Ok, I am still looking for the solution. Thank you.

hulpify.com | Shopify Partners | Front-end Developer | Shopify | Liquid | Ruby | Javascript | API Rest | SEO | Optimización.