Answers for "Shopify blocks"

0

Shopify blocks

{% for block in section.blocks %}
  {{ block.settings.setting }}
{% endfor %}

{% schema %}
  {
    "name": "Section name",
    "blocks": [
      {
        "name": "name",
        "type": "type",
        "settings": [
          {
            "type": "type",
            "id": "id",
            "label": "label"
          }
        ]
      }
    ]
  }
{% endschema %}
Posted by: Guest on September-14-2021

Browse Popular Code Answers by Language