Hi,
I’m hoping to remove JUST the “best selling” sorting option from the Narrative theme. I’ve looked on here and there are only solutions for removing multiple sorting options, or removing them on other themes. Can someone help me?
My website is fabulistcostume.com and the password is pebrea, if you’d like to look into it. Thanks in advance
Hi @fabulistcostume ,
in order to remove the “Best selling sorting” option from Narrative theme, please edit the file collection-template.liquid
Around line 52 you’ll see a for loop that populate the options in the dropdown.
Modify the code as in this example:
{%- for option in collection.sort_options -%}
{%- comment -%}Remove Best Selling from dropdown{%- endcomment -%}
{%- if option.value <> 'best-selling' -%}
{%- endif -%}
{%- endfor -%}
If you want to remove other options, please refer to the official documentation of collection.sort_options for the values