Hello, Guys hope you are doing well can someone help me I am facing an issue with pagination I want to show 6 blogs and when someone clicks on the load more button it will show 3 articles in each click at that time it’s showing 6 articles at one click.
Site Url:https://4trn0uarz9bk2ciu-20777593.shopifypreview.com
The issue on the blog page is located in the footer.
CODE :
{% paginate blog.articles by 6 %}
{% if paginate.current_page == 1 %}
{% for article in blog.articles %}
{% include 'article-loop' %}
{% endfor %}
{% else %}
{% for article in blog.articles %}
{% include 'article-loop' %}
{% endfor %}
{% endif %}
Load more
{% include 'pagination' %}
{% endpaginate %}
