I tried to hidden the collection named “Home” and “home 1” with the below coding at the main-list-collections
{%- for collection in collections -%}
{% if collection.handle != “Home” or collection.handle != “home 1” %}
<li class="collection-list__item grid__item{% if settings.animations_reveal_on_scroll %} scroll-trigger animate--slide-in{% endif %}"{% if settings.animations_reveal_on_scroll %}
data-cascade
style=“–animation-order: {{ forloop.index }};”
{% endif %}
{% render ‘card-collection’,
card_collection: collection,
media_aspect_ratio: section.settings.image_ratio,
columns: 3
%}
{% endif %}
{%- endfor -%}