Shopify使用API​​访问section.settings

时间:2018-05-30 06:33:42

标签: shopify liquid

是否可以使用shopify API访问部分数据?

我想从section.settings中提取内容,以构建自定义店面功能。我宁愿不将它们作为DOM变量传递给模板。

1 个答案:

答案 0 :(得分:1)

是的,您可以获得所有设置,而无需更新所有液体文件。我将告诉你如何在python中使用你喜欢的语言进行操作。

settings_schema = shopify.Asset.find('config/settings_schema.json')
#edit the file and the parameters and push it back to shopify

settings_data = shopify.Asset.find('config/settings_data.json')
#edit the file and the parameters and push it back to shopify

这2个文件包含您的所有主题设置,可以在Shopify主题的Config目录中找到。