Hello,
I have removed the pagination from my blog and added custom content to the list page. https://vincenttriola.com/blogs/book-reviews
I must be missing something because not only does a second page show it actually ranked in google which I didn’t want https://vincenttriola.com/blogs/book-reviews?page=2
I am looking to remove this extra page which is essentially duplicate content. Appreciate any help thanks.
Hi @vincenttriola welcome to Shopify community
I checked your page, and I see 2 problems there. I am sorry that I can give you the code, because I am not sure which version of Debut yout have, an probably there are also some custom modification already there.
Anyway you need to implement the following
Change the canonical url for paginate pages and point it to the original, so in your example
it should become
Also, and this is the most important, you have to add a noindex meta to the page, but only if it is the “paginated” version.
{% if paginate.current_page > 1 %}
{% endif %}
Please, check and test the code carefully before publishing
1 Like
This is perfect thank you.
I wanted to leave the code in case anyone is adding content to their blog list pages.
{% paginate blog.articles by 0%}
{% if paginate.current_page > 1 %}
{% else %}
{% endif %}
{% endpaginate %}
Thank you.