Есть коды рабочие для вывода картинки категории (Blog+Featured images), только с подкатегориями не работают. Помогите, плиз!
{% for category in categories %}
{% set postCount = category.post_count %}
<li> {% if category.slug == currentCategorySlug %}class="active"{% endif %}>
<a href="{{ category.url }}">{{
category.name }}</a>
{% set image = category.featured_images.first %} {# check to see if your category have any images #}
<img src="{{ image.path }}" style="width: 370px; height: 262px" alt="{{ image.file_name }}" />
{% if postCount %}
<span class="badge">{{ postCount }}</span>
{% endif %}
{% if category.children|length > 0 %}
{% partial
SELF ~ "::items"
categories=category.children
currentCategorySlug=currentCategorySlug
%}
</ul>
{% endif %}
</li>
{% endfor %}