错误导致faq.liquid被保存

时间:2017-10-31 19:02:18

标签: json error-handling shopify liquid

我正在尝试使用块添加常见问题部分到Shopify主题。我可以动态添加没有块的部分,但是一旦我尝试添加块,我就会收到错误信息

  

错误导致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 %}

1 个答案:

答案 0 :(得分:1)

我已经检查并创建了新的部分并添加了您的代码,并且它对我来说很好。