{% schema %} { "name": "FAQ Section (By OnHOW)", "class": "faq-section", "settings": [ { "type": "text", "id": "heading", "label": "Heading", "default": "FAQ" }, { "type": "text", "id": "subheading", "label": "Subheading", "default": "Frequently Asked Questions" }, { "type": "text", "id": "more_text", "label": "More questions text", "default": "More questions?" }, { "type": "text", "id": "link_text", "label": "Link text", "default": "See our full FAQ" }, { "type": "url", "id": "link_url", "label": "Link URL" } ], "blocks": [ { "type": "faq", "name": "FAQ Item", "settings": [ { "type": "text", "id": "question", "label": "Question", "default": "How does section.store work?" }, { "type": "richtext", "id": "answer", "label": "Answer", "default": "

Add your answer here. This can include multiple paragraphs and formatting.

" } ] } ], "presets": [ { "name": "Modern FAQ", "blocks": [ { "type": "faq" }, { "type": "faq" }, { "type": "faq" } ] } ] } {% endschema %}
{% if section.settings.heading != blank %}

{{ section.settings.heading }}

{% endif %} {% if section.settings.subheading != blank %}

{{ section.settings.subheading }}

{% endif %}
{% for block in section.blocks %} {% if block.type == 'faq' %}
{{ block.settings.answer }}
{% endif %} {% endfor %}
{% if section.settings.link_url != blank %}
{% if section.settings.more_text != blank %} {{ section.settings.more_text }} {% endif %} {{ section.settings.link_text }}
{% endif %}