How do you access a section setting variable? ⚙️ ```liquid {% schema %} { "settings": [ { "id": "heading", "type": "text", "label": "Heading" } ] } {% endschema %} ```

### Explanation To access section settings: ```liquid

{{ section.settings.heading }}

``` Key points: - Use `section.settings.` prefix - Settings are scoped to section - Available in section template only

Answer Options:

  • {{ settings.heading }}
  • {{ section.heading }}
  • {{ section.settings.heading }}
  • {{ heading }}
Shopify Free Test
← PreviousQuestion 1 of 1Finish →
00
← PreviousFinish →
Copyright ©Michael Bollin. Found some mistake?[email protected]