1
ブロックを含むFAQセクションをShopifyテーマに追加しようとしています。私は動的にブロックせずにセクションを追加することが、私は、私は、エラーメッセージfaq.liquidが保存されないエラーが発生しました
を得続けるブロックを追加しようとしたら「エラーが保存されてからfaq.liquid防止を。」
私は問題が何であるか、なぜそれが動作していないのかは、あまりにも曖昧なエラーメッセージであるかどうかは不明です。
<hr>
<div id="section-faq">
<div class="section-header text-center">
<h3> {{ section.settings.text-box }} </h3>
</div>
{% for block in section.blocks %}
<div class="btn" id="faq">
<a href="{{ block.settings.text-box }}" class="btn">{{ block.settings.text
}}</a>
</div>
{% endfor %}
</div>
<hr>
{% schema %}
{
"name": "faq",
"max_blocks": 6,
"settings": [
{
"id": "text-box",
"type": "text",
"label": "Heading",
"default": "FAQ"
}
],
"blocks": [
{
"type": "QA",
"name": "QA",
"settings": [
{
"id": "text-box",
"type": "text",
"label": "Question",
"default": "Add Question"
},
{
"id": "text",
"type": "richtext",
"label": "Answer",
"default": "<p>Add your answer here</p>"
}
]
}
],
"presets": [
{
"name": "FAQ",
"category": "Faq"
}
]
}
{% endschema %}