Hide specific products from main collection pages

Hello @danielmonk , You can use product tags to hide the products on the collection page.

  1. Assign a unique tag to the products you want to hide. For instance, you can use the tag “hide-in-collection.”

  2. Modify the collection section file where the product grid is rendered by adding the following condition:

{% unless product.tags contains "hide-in-collection" %}
  {% render 'card-product' %}
{% endunless %}
1 Like