Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I am trying to paginate blog articles based on tags. I have tried the code below, but it still returns all articles. Is it possible to filter arrays that have more the 50?
{% paginate blogs['recipe-database'].articles | where 'tags','Chocolate' by 10 %}
{% for article in blog.articles %}
<h2>{{article.title}}</h2>
{% endfor %}
{% endpaginate %}