Hide Collection from Collection List Page with TAg

Hello,

I am using Dawn Theme (V3) and would like to know if it’s possible to add a tag to a collection so that it is not displayed on the collection list page?

This is a live collection but one that I simply do not want listed amongst the other collection on the collection list page.

Kindest regards,

Darren.

As far as I am aware, there are no tags for collections, yet you can use its handle.

For example, go to your theme`s files and find the one that displays all collections. There, find the for loop where collections are called and right after for starts paste this:

{% if collection.handle != ‘collection-handle’ %}

and right before for loop closes, paste this:

{% endif %}

Instead of ‘collection-handle’ you write the handle of the collection you want to hide, obviously.