Hello!
Actually, I’m facing an issue and that is that this blog selection option https://prnt.sc/1o0z3j1 in the shopify articles page is not showing more than 50 blogs.
I will really appreciate if someone can let me know the work around to show more than the above limit. There are so many blogs I have created, but it is only showing 50.
Thanks!
1 Like
@neilbannet Hi,
The default pagination count is 50 if you don’t specify the limit.
You’ve to customize the Blog template directly to add the limit like following.
{% paginate blog.articles by [your-limit-count] %}
{% endpaginate %}
Hope this solves your issue
Thanks!
Hi Dan!
Thanks much for the reply!
Actually, the issue is at the backend i.e., https://prnt.sc/1o0z3j1 /admin/articles/…
Go to any one of the article and you will see a blog option under “Organization”. That blog option is not showing all the blogs ( no more than 50 ) that I have created.
So in simple words, all the blogs in this page “/admin/blogs” are not showing in the “Blog” dropdown/option in the article page. Hope it makes sense.
The above solution is for the frontend. Sorry if I am wrong.
Kind regards
hello,
https://prnt.sc/c3SG6ZcSwPM0 check this ss . i want to more than 50 blog but not shown in product page. so how to do this with customization
1 Like
@neilbannet
ref: https://shopify.dev/docs/api/liquid/tags/paginate
The default template in Liquid themes uses the paginate object 
paginate has a limit of 50 items per page. However, from a server load perspective, it’s not officially supported, but you can increase page_size to up to 1000 to display more items.
If that’s not feasible, you will need to use an app to fetch and display articles with pagination via GraphQL
https://shopify.dev/docs/api/storefront/2024-10/queries/pages
1 Like