Sort by:
{%-capture sort_label -%}
{%- for option in sort.options -%}
{%- if option.active == 1 -%}
{{ option.label }}
{%- break -%}
{%- endif -%}
{%- endfor -%}
{%- endcapture -%}
{%- if sort_label != blank -%}
{{ sort_label }}
{% else %}
{{ sort.options[0].label }}
{% endif %}
chevron-down
chevron-up
{%-capture sort_label -%}
{%- for option in sort.options -%}
{%- if option.active == 1 -%}
{{ option.label }}
{%- break -%}
{%- endif -%}
{%- endfor -%}
{%- endcapture -%}
{%- if sort_label != blank -%}
{{ sort_label }}
{% else %}
{{ sort.options[0].label }}
{% endif %}
chevron-down
chevron-up
{% for option in sort.options %}
{% if option.active == 1 %}
{{option.label}}
{% else %}
{{option.label}}
{% endif %}
{% endfor %}
{{ facet.label }}
chevron-down
chevron-down