Shopify 应用程序:任何用于检测主题更改或使主题部分即使在主题更改后仍然存在的事件?
Shopify App: Any event for detecting change of theme or make theme sections persist even after theme changes?
我创建了一个 shopify 应用程序,它在安装时向活动主题添加了一个新的主题部分。现在我担心如果 shopify 商店用户更改了他们商店的主题,那么我的主题部分更改将被删除。
有没有办法保留我的主题部分更改。如果没有,我可以听听来自 shopify 的 event/webhook 通知我主题的变化吗?
There are webhooks for themes/update
and themes/publish
。您可以尝试监视具有 theme_id
或 name
属性但与您的预期主题不匹配的发布事件,并发出有关这些部分数据消失的警告通知。
这是来自文档的示例响应:
{
"id": null,
"name": "Comfort",
"created_at": "2021-04-01T14:58:14-04:00",
"updated_at": "2021-04-01T14:58:14-04:00",
"role": "main",
"theme_store_id": 1234,
"previewable": true,
"processing": false
}
我创建了一个 shopify 应用程序,它在安装时向活动主题添加了一个新的主题部分。现在我担心如果 shopify 商店用户更改了他们商店的主题,那么我的主题部分更改将被删除。
有没有办法保留我的主题部分更改。如果没有,我可以听听来自 shopify 的 event/webhook 通知我主题的变化吗?
There are webhooks for themes/update
and themes/publish
。您可以尝试监视具有 theme_id
或 name
属性但与您的预期主题不匹配的发布事件,并发出有关这些部分数据消失的警告通知。
这是来自文档的示例响应:
{
"id": null,
"name": "Comfort",
"created_at": "2021-04-01T14:58:14-04:00",
"updated_at": "2021-04-01T14:58:14-04:00",
"role": "main",
"theme_store_id": 1234,
"previewable": true,
"processing": false
}