To access the breadcrumb on the storefront, use the breadcrumb() function inside Twig files:

<ul class="breabcrumb">
    {% for crumb in breadcrumb() %}
        <li class="crumb">
            {% if loop.last %}
                <span>{{ crumb.name }}</span>
            {% else %}
                <a href="{{ crumb.url }}">{{ crumb.name }}</a>
            {% endif %}
        </li>
    {% endfor %}
</ul>

 

Articles in this section

Was this article helpful?
0 out of 0 found this helpful