How to filter top 10 best-sellers on Stiletto theme collection page?

Hi Aneby,

I don’t have a Stiletto Theme, but I am sure most themes are similar, so follow these steps:

  1. find file name main-collection.liquid OR collection.liquid

  2. Find a line of code similar to this {%- for product in collection.products -%}

  3. and replace it with following:

{% if collection.handle == 'best-sellers' and forloop.index == 11 %}
{% break %}
{% endif %}