Acash
March 9, 2021, 4:14pm
1
H
Hi need help to change the blog post layout on my blog page itself, please. I would like it to be the same as in-home page. I would like the style to be Grid if possible. Any help will be much appreciated.
Home page: www.live-better-store.com
Blog page: www.live-better-store.com/blogs/better-sleep-tips
renus
March 9, 2021, 5:20pm
2
Try to change blog layout setting from online store → customize select blog page
Acash
March 9, 2021, 5:26pm
3
There is no option to change. Need help to add code…
Hi @Acash
You can try follow this path:
Themes => edit code => templates => blog.liquid
and remove code in that file and replace with this code:
{% paginate blog.articles by 5 %}
{% for article in blog.articles %}
{% assign article_content = article.excerpt_or_content %}
{% endfor %}
{% if paginate.pages > 1 %}
{% include 'pagination' %}
{% endif %}
{% endpaginate %}
nuwud
February 6, 2023, 5:56pm
6
This code worked great for the Brooklyn themed site I am working on!
Is there a way to make the most recent blog entry show up as full width?
Thanks!