Hello @danielmonk , You can use product tags to hide the products on the collection page.
-
Assign a unique tag to the products you want to hide. For instance, you can use the tag “hide-in-collection.”
-
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 %}