How to display specific collections on dedicated pages?

I have built my store and page 3 main pages (apparel, stickers, art)and I also have 6 main collections. When editing and adding collections to the APPAREL page I would like it to show the collection at the top of the page but only pull up that collection under APPAREL. Example: Apparel Page —> Fish Collection —> Only show fish apparel

The problem I’m having is that for the 3 main pages it shows the collections on the top but when you choose the fish collection in the APPAREL page it will show all fish collection(apparel, stickers, artwork).

How do I only get it to show the Fish apparel on the Apparel page and only Fish stickers on the Stickers page?

Hi @TheGeorgiaReefe

you should edit the for cycle in the relative pages and use tags or product_type on product to determine the belonging of a product to a give page, for example using lowercase page title as validator of product_type for products in the iteration

so like


{% assign page_title = page.title | downcase %}
{% for product in collection.products %}
{% if product.product_type == page_title %}

{% endif %}
{% endfor %}

let me know if it makes sense and if you may need further help!