How do you display 50 products per page - Sense theme
Go to your store admin > Sale channels > Online store > Themes > Edit code > Sections > open main-collection-product-grid.liquid, go to line 186, edit value in max to 52 and save file
After that, openCustomize theme
Click dropdown menu at the top > Collections > Default collection and change number of product per page
Hello @medusasmakeup ,
You can try to follow these steps:
- Go to Online Store → Themes → Actions → Edit code
- Go to Templates folder → collection.liquid file → Find the line of code that looks like this:
{% for product in collection.products %}
- Add the following code directly above that line:
{% paginate collection.products by 50 %}
- Find the line of code that looks like this:
{% endfor %}
- Add the following code directly below that line:
{% endpaginate %}
Hope this can help you. Let us know if you can make it.
Ali Reviews team.
Thank you!