Themes built on the Twig templating engine are now deprecated and require migration to Vitrin to ensure continued support and compatibility with Zid.
visible_if
to any setting. The following example shows a text input that relies on the value of the checkbox to be visible.{
...,
"sections": [
{
...
"settings": [
{
"type": "checkbox",
"id": "hide_dots",
"label": {
"ar": "إخفاء النقاط",
"en": "Hide dots"
},
"default": true
},
{
"type": "text",
"id": "text_input",
"label": { ... },
"visible_if": {
"hide_dots": false
}
}
]
}
]
}