HELP! - Symmetry theme "NEXT 1 | 2 | 3" links not working at bottom of category pages

Solved

HELP! - Symmetry theme "NEXT 1 | 2 | 3" links not working at bottom of category pages

Vicki_Reale
Shopify Partner
18 1 3

Can anyone tell me why these wouldn't be working and what file this part of the code would be in?

 

https://www.ebodyboarding.com/collections/eyewear

Accepted Solution (1)

Vicki_Reale
Shopify Partner
18 1 3

This is an accepted solution.

I DID IT!!!

 

/* Pagination */
.pagination-row {
text-align: center;
margin-top: 100px;
margin-bottom: 20px;
}

View solution in original post

Replies 2 (2)

Vicki_Reale
Shopify Partner
18 1 3

This is the code in my pagination-control.liquid:

 

{% if paginate.pages > 1 %}
<div class="pagination">
{% if paginate.previous %}
<a class="prev" href="{{ paginate.previous.url }}">&laquo; {{ 'general.pagination.previous' | t }}</a>
<span class="pagination__sep">&middot;</span>
{% endif %}

{% for part in paginate.parts %}
<span class="pagination__number {% if paginate.current_page == part.title %}active{% endif %}">
{% if part.is_link %}
{{ part.title | link_to: part.url }}
{% else %}
{{ part.title }}
{% endif %}
</span>
{% endfor %}

{% if paginate.next %}
<span class="pagination__sep">&middot;</span>
<a class="next" href="{{ paginate.next.url }}">{{ 'general.pagination.next' | t }} &raquo;</a>
{% endif %}
</div>
{% endif %}

Vicki_Reale
Shopify Partner
18 1 3

This is an accepted solution.

I DID IT!!!

 

/* Pagination */
.pagination-row {
text-align: center;
margin-top: 100px;
margin-bottom: 20px;
}