Hi,
I am not sure if this is a right place to ask a coding question but I do need a kind help from anyone who can help me solve the issue I am running into.
I have recreated tabs on the dawn theme and also add a schema on setting customizer but for some reasons it does not show anything on my tab. The schema does work on setting but not output any information I want it to be displayed on front-end page (image below).
URL HERE: https://wallartfantasy.com/products/create-your-own-art
I also want to know I should set up the tab that allows me to rename the tab label with setting customizer instead of manually going to code file to change it. I have try to put {{section.settings.id}} anywhere I can just to see if it works but no luck so far… below is the code I have.
Please let me know what I am missing. Any hint is appreciated. Thank you.
### {{ section.settings.heading-1}}
{{ section.settings.content-1}}
### PROCESSING TIME
### RETURN
s
### FAQs
{{ section.settings.heading-1 }}
{% schema %}
{
"name": "t:sections.main-product.name",
"tag": "section",
"class": "section",
"blocks": [
{
"type": "product_tab",
"name": "️Product tab",
"settings": [
{
"type":"text",
"id":"heading-1",
"label":"heading"
},
{
"type":"richtext",
"id":"content-1",
"label":"content"
},
{
"type":"text",
"id":"heading-2",
"label":"heading"
},
{
"type": "richtext",
"id": "content-2",
"label": "content"
},
{
"type":"text",
"id":"heading-3",
"label":"heading"
},
{
"type": "richtext",
"id": "content-3",
"label": "content"
},
{
"type":"text",
"id":"heading-4",
"label":"heading"
},
{
"type": "richtext",
"id": "content-4",
"label": "content"
}
]
},