Hello. I would like for the product name to not show on the featured collection only on the featured product section on the top of my home page. The theme doesn’t have a toggle button for this, so I was wondering if there was a way I could code this in and if anyone could instruct me on how to do that. Any help is much appreciated. Thank you! URL https://gyjtms9q8glmc3hb-26215088200.shopifypreview.com
Hey @joshwp ,
Follow these steps:
-
Go to Online Store → Theme → Edit code
-
Edit product-card.liquid under Snippet
- Search for {{ product.title }}
Replace it with
{% if template == “index” %}
{% comment %} add something if you want {% endcomment %}
{% else %}
{{ product.title }}
{% endif %}
Thanks
Follow these steps:
-
Go to Online Store → Theme → Edit code
-
Edit featured-collection.liquid under Snippet
- Search for {{ product.title }}
Replace it with
{% unless template == “index” %}
{{ product.title }}
{% endunless %}