How to customize sorting options on collection page

21 Jul 2021

Axel Kee

On most theme, the default sorting option on the collection / catalog page is “Alphabetically, A-Z”, which products will be sorted from A to Z.

This default sorting option may not be ideal, it might be more appealing to show customers the best selling products or featured products.

This post will go over on how to set the default selected sorting option, and how to customize the available sorting options, like removing some option, or customize the text shown on the dropdown.

  1. How to change default sorting option on collection
  2. How to change default sorting option on catalog / products page without coding
  3. How to change default sorting option on catalog / products page with coding
  4. Customize available sorting options


How to change default sorting option on collection

If you have created collection, you can go to the collection and change the sorting option like this :

sort option

How to change default sorting option on catalog / products page without coding

By default, all Shopify stores have a “Catalog” page which show all available products (with stock) in your store, this page is usually located in your-store.myshopify.com/collections/all .

You can override the default sorting option by creating a new collection and name its title as “All”, and change the sorting option to the one you want.

create collection

collection all

And use “Automated” Collection type, and use conditions of “Product price” is greater than 0, this will automatically match almost all your product in the store.

automated collection using price

sort option

How to change default sorting option on catalog / products page with coding

If you don’t want to create a new collection for the Catalog/ products page just for the sorting option, you can opt to edit the code of the collection page instead.

Select “Theme” > “Actions” > “Edit code”

theme edit code

Open “collection.liquid”, this file controls the layout of the collection page. Depending on the theme you use, some of them might include a different section for it, if there’s a section in this file, then we will navigate to that file instead.

collection.liquid

Next, search for “collection.default_sort_by”, and find for the result that starts the line with “{% assign” , which for the example below, is the

{%- assign sort_by = collection.sort_by default: collection.default_sort_by -%}

line.

default-sort-by

We then proceed to add some code (the if and endif part) below it :

{%- assign sort_by = collection.sort_by | default: collection.default_sort_by -%}

{% if collection.handle == "all" %}
    {% assign sort_by = 'best-selling' %}
{% endif %}

The code above will make the sorting option to become “Best selling”, if it is the catalog / products page.

You can change it to options listed below : (the ‘best-selling’ part shown above)

  1. manual

  2. best-selling

  3. title-ascending

  4. title-descending

  5. price-ascending

  6. price-descending

  7. created-ascending

  8. created-descending


Customize available sorting options

Similar to the previous section, we can edit the sorting options in code in the same page.

Select “Theme” > “Actions” > “Edit code”

theme edit code

Open “collection.liquid”, this file controls the layout of the collection page. Depending on the theme you use, some of them might include a different section for it, if there’s a section in this file, then we will navigate to that file instead.

collection.liquid

Next, search for “for option in collection”, you will see a block like this :

{%- for option in collection.sort_options -%}
    <option value="{{ option.value }}" {% if option.value == sort_by %}selected="selected"{% endif %}>{{ option.name }}</option>
{%- endfor -%}

all sort options

The code above (“for option…” block) will generate the dropdown list for the sort options : sort options UI

The code above will actually generate the following HTML code :

<option value="created-descending">Date, new to old</option>
<option value="manual">Featured</option>
<option value="best-selling" selected="selected">Best selling</option>
<option value="title-ascending">Alphabetically, A-Z</option>
<option value="title-descending">Alphabetically, Z-A</option>
<option value="price-ascending">Price, low to high</option>
<option value="price-descending">Price, high to low</option>
<option value="created-ascending">Date, old to new</option>

If you would like to fully customize the sort options, you can replace this part of code :

{%- for option in collection.sort_options -%}
    <option value="{{ option.value }}" {% if option.value == sort_by %}selected="selected"{% endif %}>{{ option.name }}</option>
{%- endfor -%}

with

<option value="created-descending" {% if 'created-descending' == sort_by %}selected="selected"{% endif %}>Date, new to old</option>
<option value="manual" {% if 'manual' == sort_by %}selected="selected"{% endif %}>Featured</option>
<option value="best-selling" {% if 'best-selling' == sort_by %}selected="selected"{% endif %}>Best selling</option>
<option value="title-ascending" {% if 'title-ascending' == sort_by %}selected="selected"{% endif %}>Alphabetically, A-Z</option>
<option value="title-descending" {% if 'title-descending' == sort_by %}selected="selected"{% endif %}>Alphabetically, Z-A</option>
<option value="price-ascending" {% if 'price-ascending' == sort_by %}selected="selected"{% endif %}>Price, low to high</option>
<option value="price-descending" {% if 'price-descending' == sort_by %}selected="selected"{% endif %}>Price, high to low</option>
<option value="created-ascending" {% if 'created-ascending' == sort_by %}selected="selected"{% endif %}>Date, old to new</option>

After replacing the “for option in…” block with the HTML code above, we can then start customizing the sort option.

For example, I don’t want the “Date, old to new” sort option, and change the “Featured” sort option text to “Curated”, here is the modified code for it :

<option value="created-descending" {% if 'created-descending' == sort_by %}selected="selected"{% endif %}>Date, new to old</option>
<option value="manual" {% if 'manual' == sort_by %}selected="selected"{% endif %}>Curated</option>
<option value="best-selling" {% if 'best-selling' == sort_by %}selected="selected"{% endif %}>Best selling</option>
<option value="title-ascending" {% if 'title-ascending' == sort_by %}selected="selected"{% endif %}>Alphabetically, A-Z</option>
<option value="title-descending" {% if 'title-descending' == sort_by %}selected="selected"{% endif %}>Alphabetically, Z-A</option>
<option value="price-ascending" {% if 'price-ascending' == sort_by %}selected="selected"{% endif %}>Price, low to high</option>
<option value="price-descending" {% if 'price-descending' == sort_by %}selected="selected"{% endif %}>Price, high to low</option>

And here’s the result :

new sorting options

Customize your Shopify store without coding knowledge, and gain happy customers

I will send practical tutorials and guide to improve your store experience, which you can follow without coding experience, about once a week

We respect your privacy, unsubscribe any time