How can I modify sort options on collection pages?

Hi guys,

Can someone please tell me where I can adjust this? I want to change the way to sort that’s currently on every collection page. I only want visitors to sort on:

  • A - Z

  • Z - A

  • Populair

Now they can also sort on price and date. I want to remove that. Since it’s an affiliate website and not important.

Website: https://regeljebusiness.nl/collections/boekhouding

Hello @daisyweber ,

Two ways:

  1. Edit collection related template, find the code and comment/remove it.

  2. With css

option[value=best-selling]{
display: none;
}

Drawback for css it will not hide default selected option on initial load. So again you have to find the code and change the selected attribute to blank option.

Thanks

Not sure what you mean. But for now i’ve just removed the whole thing using

.sort-position { display: none; }