Product Filtering Limited to 10 Products Only?

Hi, I’ve created a snippet for a product filtering system. It filters by catalog and category. Been looking for a fix for an issue that only renders 10 items max per search results.

If there is a pagination option or an option just to render out all products that would be great! All suggestions/help is appreciated

Here is my snippet code:

1 Like

Hi @malekf
The default output limit for all components is 10. To have a component output more you can add the limit parameter.

See docs for the Product component: module (Products)

So for example:

{% component type: "module", source: "Products", layout: "List", limit: "1000" %}
1 Like