How can I insert the breadcrumbs in the collections page but have it above the filters - see the attached picture. Can someone help me? I use the symmetry theme…
I changed it in theme.liquid, see the code below but it can be seen over the picture (see the attached picture)… I also tried to put the code below without success..
{% unless template.name == ‘cart’ or settings.cart_type == ‘page’ %}{% section ‘cart-drawer’ %}{% endunless %}
{% section ‘announcement-bar’ %}
{% section ‘header’ %}
{%- if template.name == ‘product’ -%}
{% render ‘breadcrumbs’ %}
{%- endif -%}
{%- if template.name == ‘page’ -%}
{% render ‘breadcrumbs’ %}
{%- endif -%}
{% section ‘store-messages’ %}
{%- if template.name == ‘collection’ -%}
{% render ‘breadcrumbs’ %}
{%- endif -%}
{{ content_for_layout }}
{%- if request.path != ‘/challenge’ -%}
{% section ‘popup’ %}
{%- endif -%}

