All Categories
{%- for block in section.blocks -%}
{{ block.settings.title | split: ' > ' | last }}
{%- for child in block.settings.children_categories -%} {%- assign child_title_parts = child.name | split: ' > ' -%} {%- if child_title_parts.size == 2 -%}
{{ child.image | image_url: width: 100 | image_tag: alt: child.title }}
{{ child_title_parts[1] }}
{%- endif -%} {%- endfor -%}
{%- endfor -%} {% schema %} { "name": "Homepage", "class": "section", "tag": "section", "disabled_on": { "groups": ["header", "footer"] }, "blocks": [ { "type": "column", "name": "Column", "settings": [ { "type": "image_picker", "id": "image", "label": "image" }, { "type": "inline_richtext", "id": "title", "label": "title" }, { "type": "richtext", "id": "description", "label": "description text" }, { "type": "text", "id": "link_label", "label": "link label" }, { "type": "url", "id": "link", "label": "link url" }, { "type": "metaobject_list", "metaobject_type": "category_metaobject", "id": "children_categories", "label": "children categories" } ] } ] } {% endschema %}