How can I remove the cart icon from my homepage using the Pipeline theme?
Thank you
How can I remove the cart icon from my homepage using the Pipeline theme?
Thank you
Hey @SamShuter
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
worked perfectly, thank you!
Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.
Hello @SamShuter
Follow these Steps:
This is screenshot:- https://prnt.sc/CyZCnqzTLZEn
{%- comment -%}
{% if cart == empty %}
{{'icon-cart-empty.svg' | inline_asset_content }}
{% else %}
{{'icon-cart.svg' | inline_asset_content }}
{% endif %}
{{ 'templates.cart.cart' | t }}
{%- if cart != empty -%}
{%- if cart.item_count < 100 -%}
{{ cart.item_count }}
{%- endif -%}
{{ 'sections.header.cart_count' | t: count: cart.item_count }}
{%- endif -%}
{%- endcomment -%}