I would like to remove the Best Selling Option from my sort by. I’ve tried a bunch of different ways but I either get an error or no change at all. Here is the coding where i believe the change needs to be made in:
<div class="collection__sort__option-wrapper" data-collection-sort-options>
<div class="collection__sort__options">
<ul class="collection__filter-tags collection__filter-tags--default" collection-sort-by="{{ sort_by }}">
{%- for option in sort_options -%}
<li class="collection__filter-tag">
<input class="collection__sort__input" type="radio" name="sort_by_bar" value="{{ option.value }}" id="filter-bar-{{ option.name | handle | append: option.value | handle | append: section.id }}" data-input-sort{% if option.value == sort_by %} checked{% endif %}>
<label class="collection__sort__button" for="filter-bar-{{ option.name | handle | append: option.value | handle | append: section.id }}" tabindex="0">
{{- option.name -}}
</label>
</li>
{%- endfor -%}
</ul>
<noscript>
<button type="submit" class="btn btn--primary btn--solid">{{ 'collection.filters.sort_button' | t }}</button>
</noscript>
</div>
</div>
</div>{%- endif -%}
Thank you in advance