I am using the Dawn theme to create my online shop, and I would like to add breadcrumbs at the top of each product and collection page. I tried to make Snippets
breadcrumbs.liquid
The code I entered:
Home {% if collection %} » {{ collection.title }} {% else %} {% assign first_collection = product.collections.first %} {% if first_collection %} » {{ first_collection.title }} {% endif %} {% endif %} {% if product %} » {{ product.title }} {% endif %}As a result, it is shown below.
![]()
However, I want to show the other categories, such as WOMEN > TOPS > Blouses, between Home and BLOUSES.
Please advise me on how to fix this. Thank you so much.