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 onlyAnswer Options:
- {{ settings.heading }}
- {{ section.heading }}
- {{ section.settings.heading }}
- {{ heading }}