Remove Breadcrumb
Posted: Wed Aug 15, 2018 4:55 am
How to remove breadcrumb V3.x entirely and also individual pages?
(for those people looking just for that)
Every solution I found was for 2.X not for 3.x
From what I did find I assumed I would need to edit product.twig via the theme editor
Removing
did nothing
Also this wouldn't remove it from the other pages anyway.
Assume once I figure this out I will understand how to also remove Category from product page as well.
(for those people looking just for that)
Every solution I found was for 2.X not for 3.x
From what I did find I assumed I would need to edit product.twig via the theme editor
Removing
Code: Select all
<ul class="breadcrumb">
{% for breadcrumb in breadcrumbs %}
<li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li>
{% endfor %}
</ul>
Also this wouldn't remove it from the other pages anyway.
Assume once I figure this out I will understand how to also remove Category from product page as well.