Shopify重新排序部分和可编辑内容?

时间:2017-07-24 08:45:26

标签: shopify liquid

我正在尝试定义架构,以便可以在管理员中编辑和重新排序我的部分。我把它放在我的两个section.liquid文件的底部。

{% schema %}
{
  "presets": [
    {
      "category": "Custom Content",
      "name": "Text",
      "settings": {
        "heading": "Hello World"
      }
    }
  ]
}
{% endschema %}

当我保持“标题”时:“Hello World”我收到错误

Status: 422 Unprocessable Entity Errors: Invalid preset "Text": cannot add settings because there are no settings defined in the schema.

我不完全确定我需要在哪里定义设置?

此外,当我摆脱设置部分“标题”:“Hello World”它保存但部分无法重新排序时,我认为当“预设”部分在模式中时启用了?

1 个答案:

答案 0 :(得分:0)

缺少部分代码。 在为设置定义预设值之前,您需要按照以下文档中的说明自行定义设置:https://help.shopify.com/themes/development/theme-editor/sections#settings

HTH