A space to discuss online store customization, theme development, and Liquid templating.
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
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 🙂