如何向Shopify添加可编辑的静态部分?

时间:2017-04-13 10:30:05

标签: e-commerce shopify liquid

我一直在玩Shopify的部分功能。我认为我开始很简单,有两个字段静态部分,让管理员编辑帮助模式的内容。

我阅读了我能找到的所有文档(不是很多),并从Debut主题的标题部分“借用”了一些代码。

我创建了一个名为help.liquid的剖面文件,并使用{% section ‘help’ %}在我的主页上调用它

内容按预期在页面上输出,“帮助”部分显示在管理系统的“部分”选项卡中,但不可用。必须有一些我缺少的东西,但我无法弄清楚它是什么!

我的section文件中的代码如下:

<div data-section-id="{{ section.id }}" data-section-type="help-section">

    <div class="modal modal--help">
        <div class="modal__hd">
            <h2 class="modal__title">{{ section.settings.help_title }}</h2>
        </div>
        <div class="modal__bd">
            {{ section.settings.help_content }}
        </div>
    </div>

</div>

{% schema %}
  {
    "name": "Help",
    "settings": [
      {
        "type": "text",
        "id": "help_title",
        "label": "Help title",
        "default": "Help"
      },
      {
        "type": "text",
        "id": "help_content",
        "label": "Help content",
        "default": "Here's some info on getting help"
      }
    ]
  }
{% endschema %}

0 个答案:

没有答案