定制的部分没有出现在Shopify的新主题编辑器中

时间:2016-10-05 03:35:12

标签: themes shopify liquid sections

随着新主题编辑器的发布,我被指派使用Shopify的新主题构建器框架构建一个新客户的网站。

除了当我去创建一个新的'部分时,一切都很顺利。在后端,它无法出现在主题编辑器的“章节”中。区域。

知道这里出了什么问题吗?是否有另一个JSON文件与我错过的部分相关联?

<div id="callToActions">
  <div class="grid grid--no-gutters">
    <div class=""></div>
  </div>
</div>



{% schema %}
{
  "name": "Call to Actions",
  "class": "index-section index-section--flush",
  "settings": [
    {
      "id": "cta_1_title",
      "type": "text",
        "label": "CTA 1 Title",
      "default": "Dryups Specials"
    }
  ]
}
{% endschema %}

1 个答案:

答案 0 :(得分:11)

你几乎就在那里,只是缺少一件事。如果已定义预设,则部分将仅显示为要添加的选项。

此更新将显示:

{% schema %}
{
  "name": "Call to Actions",
  "class": "index-section index-section--flush",
  "settings": [
    {
      "id": "cta_1_title",
      "type": "text",
      "label": "CTA 1 Title",
      "default": "Dryups Specials"
    }
  ],
  "presets": [{
    "name": "Call to Actions",
    "category": "Text"
  }]
}
{% endschema %}

注意类别。如果省略,它将最终在杂项下。