Hello,
I’m using the ‘Editions’ theme. I have a ‘next’ and ‘previous’ button but they just refresh the page instead of leading to the relevant place. Code below - what do I need to add?
{%- if paginate.pages > 1 -%}
{%- if paginate.previous-%}
{% render 'prev' %}
{%- endif -%}
{% assign count = paginate.pages %}
{%- if paginate.next -%}
{% render 'next' %}
{% endif %}
{% endif %}
{% endpaginate %}
{% endif %}