A space to discuss online store customization, theme development, and Liquid templating.
Pagination on Dawn's account page does not work.
section/main-account.liquid
{% paginate customer.orders by 20 %}
…
{% endpaginate %}
I have only 11 orders in my store so changed to:
{% paginate customer.orders by 5 %}
…
{% endpaginate %}
Displayed order changes to 5 but pagination is not displayed.
If you try to output {{ paginate.pages }}, it will be displayed as "1".
I'm having the same issue. I use:
{% paginate customer.orders by 20 %}
{% for order in customer.orders %}
and end with
{% endfor %}
{{ paginate | default_pagination }}
{% endpaginate %}