Hey there,
I made sure to add the {{content_for_index}} in the index.liquid file.
I validated my JSON and a preset is present.
Below there are some images. The one with the question mark is my situation with the other image showing what it should look like.
Here follows my code:
{% schema %}
{
"name": "Pricing",
"class": "section-pricing",
"tag": "section",
"settings": [
{
"id": "title",
"type": "text",
"label": "Title",
"default": "Pricing"
},
{
"id": "description",
"type": "textarea",
"label": "Description",
"default": "Quickly build an effective pricing table for your potential customers with this Bootstrap example. It’s built with default Bootstrap components and utilities with little customization."
}
],
"blocks": [
{
"type": "tier",
"name": "Tier",
"limit": 4,
"settings": [
{
"id": "tier_name",
"type": "text",
"label": "Tier Name",
"default": "Free"
},
{
"id": "tier_price",
"type": "text",
"label": "Tier Price",
"default": "0"
},
{
"id": "tier_date",
"type": "select",
"label": "Tier Date",
"options": [
{
"value": "dy",
"label": "Daily"
},
{
"value": "mo",
"label": "Monthly"
},
{
"value": "yr",
"label": "Yearly"
}
],
"default": "mo"
},
{
"id": "tier_description",
"type": "textarea",
"label": "Tier Description",
"info": "Seperate by a comma",
"default": "10 users included, 2GB of storage, Email support, Help center access",
"placeholder": "example a, example b, example c"
},
{
"id": "tier_button_style",
"type": "select",
"label": "Button Style",
"options": [
{
"value": "outline",
"label": "Outline"
},
{
"value": "filled",
"label": "Filled"
}
],
"default": "outline"
},
{
"id": "tier_button_text",
"type": "text",
"label": "Button Text",
"default": "Sign Up"
},
{
"id": "tier_button_link",
"type": "text",
"label": "Tier Link URL",
"default": "#"
}
]
}
],
"presets": [
{
"category": "Pricing Component",
"name": "Pricing",
"settings": {
"title": "Pricing",
"description": "Quickly build an effective pricing table for your potential customers with this Bootstrap example. It’s built with default Bootstrap components and utilities with little customization."
}
}
]
}
{% endschema %}
Appreciate any help,
Roald




