Adding blog except to Impule Shopify Theme

One of the things I found lacking in the Impulse theme was the Blog excerpt on the home page. I added the following to blog-posts.liquid :

{% if section.settings.show_excerpts %}
{% if article.excerpt.size > 0 %}
{{ article.excerpt }}
{% else %}

{{ article.content | strip_html | truncatewords: 40 }}

{% endif %} {% endif %}

And this to the scheme:

{
“type”: “checkbox”,
“id”: “show_excerpts”,
“label”: “Show post excerpts”,
“default”: true
},

But it’s unfortunately not working. Any help?

1 Like

@pkgweb

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hey Ketan,

I am trying to achieve the same thing in a blog posts section.
My site url is coreandfloor.com.au

thanks

Bec