Getting familiarized with Shopify’s 2.0 with the use of JSON code to build templates. But I’m stuck and not sure what to do on this situation. I’m able to add sections onto a new JSON template on my shopify theme, but when I try to use a section from a product page it does not display anything even if I add text or images onto it. Don’t think I need to mix any old liquid code onto a JSON template.
here is the code I’m using for the custom template, I’m practically calling the sections to be used on the template, but when I fill them out on the customizer it does not display anything on the page.
{
"sections": {
"main": {
"type": "page-cms",
"settings": {
}
},
"kit-selector": {
"type": "page-kit-selector",
"settings": {
}
},
"prodct": {
"type": "product",
"settings": {
}
},
"prodct-fullwdth": {
"type": "product-full-width-banner",
"settings": {
}
},
"product-highlts": {
"type": "product-highlights",
"settings": {
"type": "color",
"id": "background_color",
"label": "Background color",
"default": "#ffffff"
}
},
"product-vid": {
"type": "product-video",
"settings": {
}
}
},
"order": [
"main",
"prodct",
"prodct-fullwdth",
"kit-selector",
"product-highlts",
"product-vid"
]
}
Does anyone know what I need to do to display some sections from product pages onto my new JSON template?