在Shopify主题的何处添加主题名称,创建者和主题版本?

时间:2019-02-27 14:40:18

标签: shopify

在Shopify的基本主题中,当您点击自定义和主题设置时,我们在自定义标签的最底部看到以下信息:

DEBUT(版本11.1.3) Shopify的设计和支持

我的问题是,当我开始开发主题时,应该在哪里添加此信息,以便它可以显示在其中?

1 个答案:

答案 0 :(得分:3)

这些设置在 settings_schema.json 中指定。有关设置架构的更多信息,请查看Shopify documentation。来自Shopify主题的示例JSON

 {
    "name": "theme_info",
    "theme_name": "Debut",
    "theme_author": "Shopify",
    "theme_version": "1.0.0",
    "theme_documentation_url": "http:\/\/shopify.com\/",
    "theme_support_email": "shopify-support@email.com"
  }