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?