Hi Gabe,
genau es handelt sich um einen Abschnitt im Theme Editor. So wie du es beschreibst, sollte es auch sein. Der vorherige Tab, sollte nach weiterem Öffnen eines neuen Tabs automatisch schließen.
Den Leitfaden habe ich mir angesehen, allerdings blicke ich da nicht durch ;/…
HTML Code kann ich einbauen, sofern ich weiß, wie dieser definiert sein sollte. Es gibt die faq.liquid, vielleicht hast du oder wer anders einen Hinweis für mich:
Show More
{%- endif -%}
{%- if section.settings.title != blank -%} {%- endif -%} {%- if section.blocks.size > 0 -%} {%- for block in section.blocks -%}
{% case block.type %} {% when 'rich-text'%}
{%- if block.settings.title != blank -%}
{{ block.settings.title | escape }}
{%- endif -%} {%- if block.settings.text != blank -%}{%- if block.settings.enlarge_text %}
{% endif -%} {{ block.settings.text }} {%- if block.settings.enlarge_text %}
{% endif -%}
{%- endif -%}
{% when 'question'%}
{{ block.settings.text }}
{% endcase %}
{%- endfor -%} {%- endif -%} {%- if section.blocks.size == 0 -%}{{ 'home_page.onboarding.no_content' | t }}
{%- endif -%}
{%- if section.settings.divider -%}
{%- endif -%} {% schema %} { "name": "t:sections.faq.name", "class": "index-section", "settings": [ { "type": "text", "id": "title", "label": "t:sections.faq.settings.title.label", "default": "FAQs" } ], "blocks": [ { "type": "rich-text", "name": "t:sections.faq.blocks.rich_text.name", "settings": [ { "type": "text", "id": "title", "label": "t:sections.faq.blocks.rich_text.settings.title.label", "default": "Rich text" }, { "type": "richtext", "id": "text", "label": "t:sections.faq.blocks.rich_text.settings.text.label", "default": "
Use this section for any descriptive text you need to fill out your pages or to add introductory headings between other blocks.
" }, { "type": "select", "id": "align_text", "label": "t:sections.faq.blocks.rich_text.settings.align_text.label", "default": "left", "options": [ { "value": "left", "label": "t:sections.faq.blocks.rich_text.settings.align_text.options.left.label" }, { "value": "center", "label": "t:sections.faq.blocks.rich_text.settings.align_text.options.center.label" }, { "value": "right", "label": "t:sections.faq.blocks.rich_text.settings.align_text.options.right.label" } ] } ] }, { "type": "question", "name": "t:sections.faq.blocks.question.name", "settings": [ { "type": "text", "id": "title", "label": "t:sections.faq.blocks.question.settings.title.label", "default": "Frequently asked question" }, { "type": "richtext", "id": "text", "label": "t:sections.faq.blocks.question.settings.text.label", "default": "
Use this text to answer questions in as much detail as possible for your customers.
" } ] } ], "presets": [ { "name": "t:sections.faq.presets.faq.name", "blocks": [ { "type": "question" }, { "type": "question" } ] } ] } {% endschema %} ```
VG DPG