dima7b
5/10/2013 - 9:47 AM

Shopify - Show links to all pages in pagination, gets rid of the "..."

Shopify - Show links to all pages in pagination, gets rid of the "..."

<div id="pagination">

    <ul>
        {% if paginate.previous %}
            <li>{{ paginate.previous.title | link_to: paginate.previous.url }}</li>
        {% endif %}

        {% for i in (1..paginate.pages) %}
            {% if paginate.current_page == i %}
                <li>{{ i }}</li>
            {% else %}
                <li><a href="?page={{ i }}">{{ i }}</a></li>
            {% endif %}
        {% endfor %}

        {% if paginate.next %}
            <li>{{ paginate.next.title | link_to: paginate.next.url }}</li>
        {% endif %}
    </ul>

    <p>
        Showing items {{ paginate.current_offset | plus: 1 }}-{% if paginate.next %}{{ paginate.current_offset | plus: paginate.page_size }}{% else %}{{ paginate.items }}{% endif %} of {{ paginate.items }}.
    </p>
</div>