In your collection-template.liquid file under "Sections" look for:
{%- for option in collection.sort_options -%}
And add the following after it:
{% unless option.value == 'manual' or option.value == 'title-ascending' or option.value == 'title-descending' or option.value=='created-ascending' or option.value == 'created-descending' %}
<option value="{{ option.value }}" {% if option.value == sort_by %}selected="selected"{% endif %}>{{ option.name }}</option>
{% endunless %}
Your code section should look like:
{%- for option in collection.sort_options -%}
{% unless option.value == 'manual' or option.value == 'title-ascending' or option.value == 'title-descending' or option.value=='created-ascending' or option.value == 'created-descending' %}
<option value="{{ option.value }}" {% if option.value == sort_by %}selected="selected"{% endif %}>{{ option.name }}</option>
{% endunless %}
{%- endfor -%}
Let me know if I missed something in the filters
User | Count |
---|---|
387 | |
204 | |
144 | |
46 | |
42 |