Currently, the way the default product catalogue is sorted is by A-Z.
I want to change the default sorting to the newest products first. AKA “‘created-descending’”
I’ve tried editing a bit of code on the “main-collection-product-grid.liquid”, specifically:
// tried changing the default in this code to a few different options.
{%- assign sort_by = collection.sort_by | default: collection.default_sort_by -%}
// Added the below code as well.
{% if collection.handle == “all” %}
{% assign sort_by = ‘created-descending’ %}
{% endif %}
Please advise how to change the default sorting of the main product catalogue