Skip to content

Instantly share code, notes, and snippets.

@hezninja
Last active June 20, 2022 00:33
Show Gist options
  • Save hezninja/b9848cbef7998ecacdbafa2a8100a326 to your computer and use it in GitHub Desktop.
Save hezninja/b9848cbef7998ecacdbafa2a8100a326 to your computer and use it in GitHub Desktop.
Assign a specific Shopify collection to a product for a custom breadcrumb using the collection handle and a metafield
{% assign productCollections = product.collections | map:'handle' %}
{% if productCollections contains product.metafields.my_fields.breadcrumb %}
<a href="/collections/{{product.metafields.my_fields.breadcrumb}}">{{collections[product.metafields.my_fields.breadcrumb].title}}</a>
{%- endif -%}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment