Hide product variants on homepage and collections page

Hi there!

I want to hide the product variants on the homepage and on the collections page on the Enterprise theme.

I want the variants to remain on the product page.

How can I do that?

Thank you!

Hey @fcapatina

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag

{% if template == 'index' %}

{% endif %}
{% if template == 'collection' %}

{% endif %}

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like