An error appear:
[development] (sections/collection-filters-section.liquid) Invalid schema: setting with id="should_ajaxify" default must be a boolean
Fixed it by replacing
{
"type": "checkbox",
"id": "should_ajaxify",
"label": "Enable Ajaxify?",
"default": "false"
},
{
"type": "checkbox",
"id": "should_ajaxify",
"label": "Enable Ajaxify?",
"default": false
},
An error appear:
[development] (sections/collection-filters-section.liquid) Invalid schema: setting with id="should_ajaxify" default must be a boolean
Fixed it by replacing
{
"type": "checkbox",
"id": "should_ajaxify",
"label": "Enable Ajaxify?",
"default": "false"
},
{
"type": "checkbox",
"id": "should_ajaxify",
"label": "Enable Ajaxify?",
"default": false
},