2017-07-24 81 views
0

我試圖定義模式,以便我的部分可以在管理員中進行編輯和重新排序。我有這兩個我的section.liquid文件的底部。Shopify將訂購部分和可編輯內容重新排序?

{% schema %} 
{ 
    "presets": [ 
    { 
     "category": "Custom Content", 
     "name": "Text", 
     "settings": { 
     "heading": "Hello World" 
     } 
    } 
    ] 
} 
{% endschema %} 

當我把「標題」:「Hello World」的我的錯誤

Status: 422 Unprocessable Entity Errors: Invalid preset "Text": cannot add settings because there are no settings defined in the schema.

我不能完全肯定有什麼地方我需要定義的設置?

另外,當我擺脫設置部分「標題」:「Hello World」它保存但部分不能重新排序,我認爲當「預設」部分是在架構中啓用?

回答