You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is likely because you had paginate.previous and/or paginate.parts in Pagination block.
It works for me after I removed those two, leaving only paginate.next like shown in the docs:
{% paginate collection.products by 3 %}
<div id="AjaxinateContainer" >
{% for product in collection.products %}
{% include 'product-grid-item' %}
{% endfor %}
</div>
<div id="AjaxinatePagination">
{% if paginate.next %}
<a href="{{ paginate.next.url }}">Loading More</a>
{% endif %}
</div>
{% endpaginate %}
Describe the bug
Once you start scrolling and at the last product, it will duplicate all the products again and again.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Stop scrolling at the last product
Link
https://honorthegift.co/collections/accessories
Additional context
Please help solving this bug
The text was updated successfully, but these errors were encountered: