Multi-select checkbox input setting

Hello. If anyone from Shopify is reading this, I just wanted to tell that an input setting with multiple checkboxes would be great feature to have.

For example:

{
  "type": "multi_checkbox",
  "id": "topics"
  "label": "Select topics",
  "options": [
    { "label": "Fashhion", "value": "fashion" },
    { "label": "Technology", "value": "technology" },
    { "label": "Sport", "value": "sport" },
    { "label": "Food", "value": "food" }
  ],
  "default": ["fashion","technology"]
}

And when we access this with section.settings.multi_checkbox it should give us an array of selected values

1 Like