The page numbers at the bottom of the collection pages, when clicked, are just refreshing the page and staying on page 1 which in return is not advancing to the next page of the collection. I thought it could have been how the collections page was built but it doesnt seem to be that. any ideas?
It’s pretty hard to help you with the little amount of information you’ve provided.
Perhaps share a live preview URL, some of the code you’re using and any console/network logs you see.
Hey Luke,
Please find below.
Example url - Brighton – Herman Hiss & Company
If there is anything else you believe would help, please let me know and I am happy to share.
Thank you.
The problem page you linked is not properly leveraging Shopify pagination. You have to make sure you are providing a ?page=
in your URL. If I look at your pagination items at the bottom of the page you seem to be directing customers to a custom search results page that redirects to the collection.
Example:
<a href="/pages/search-results-page?collection=brighton" class="pagination__item link" aria-label="Page 2">2</a>
You just keep linking the same page over and over again. I don’t know why you have this whole /pages/search-results-page
setup, but you need to make it support &page=2
and ensure the customer lands on /collections/brighton?page=2
It ended up being an old app that they werent using any longer that was pushing all the pagination pages to the search-results-page that you were seeing.
Thank you both for the help.