Why am I getting a Liquid Section Error in my Shopify Sections?

I recently started with shopify sections. and i am getting an error

  • Error: Invalid schema: setting with id=“descriptipn” type is invalid
  • Error: Invalid schema: setting with id=“descriptipn” ‘label’ is not a valid attribute
  • Error: Invalid schema: setting with id=“descriptipn” ‘id’ is not a valid attribute

What am i doing wrong? Please help

{% schema %}
{
“name”: “icons with text above”,
“settings”: [
{ “type”:“text”,
“label”:“your headline”,
“id”:“heading”
},
{
“type”: “rich_text”,
“label”: “your description”,
“id”: “descriptipn”
}
]
}
{% endschema %}

1 Like

@Loven

sorry for any issue you have try this way

https://www.shopify.in/partners/blog/how-to-create-your-first-shopify-theme-section

Hi @Loven ,

One of the prerequisites for learning how sections work on Shopify themes is understanding Shopify’s theme templates system. With Online Store 2.0, each page type can be represented as a .json file within the /templates directory of a theme. You are able to structure each page type by defining which sections will appear by default in these JSON template files:

I highly suggest taking advantage of Shopify’s resources when it comes to understanding sections:

All the best,