Hello,
I am trying to add breadcrumbs on Prestige Theme but I cannot get to path to be shown correctly:
https://www.ektahelsinki.fi/products/ribbed-o-neck-sweater-brown
I would like to have women / sweaters / elisabet cardigan
How can I do that?
Thank you so much in advance!
To add breadcrumbs to the Prestige theme on your Shopify store, you’ll need to make modifications to the theme’s code. Here’s a general guideline on how to achieve this:
- From your Shopify admin panel, go to “Online Store” and click on “Themes.”
- Locate the Prestige theme you’re using and click on “Actions” > “Edit code.”
Note: It’s always recommended to create a backup of your theme before making any changes.
-
In the “Sections” or “Snippets” directory, look for the file that controls the product page template. It might be named product.liquid
or similar.
-
Open the file and locate the section where you want to display the breadcrumbs. Typically, breadcrumbs are placed just below the page title.
-
Insert the following code snippet to generate the breadcrumbs:
{% for collection in product.collections %}
- {{ collection.title }}
{% endfor %}
- {{ product.title }}