A space to discuss online store customization, theme development, and Liquid templating.
How do show blogs in chronological order in the dawn theme? Please help me if anyone know
Hi @Abdurrehman
I understood your concern. I came to know that you have to add custom code to main-blog.liquid file. I hope this can help you to resolve the issue.
{% assign blogArticles = blog.articles | reverse %}
{%- for article in blogArticles -%}
<div class="blog-articles__article article">
{%- render 'article-card', article: article, show_image: section.settings.show_image -%}
</div>
{%- endfor -%}
Please check the attached screenshot:
Thank you.
Thanks really appreciate your help 🙂