Hiding/showing content based on the user’s answers and other logic
Go to the Page/Component Options
Add a Condition
+ Add condition
button.Is or includes
.age_range = 'under_18'
.Here, age_range
is the key, Is or includes
is the operator, and under_18
is the value.Is or includes (==)
_no_value
is specified and the user data is undefined/null_no_value
is specified and any value in the user data array is undefined/null_true
and _false
will be automatically converted to their boolean equivalents.Is not or excludes (!=)
_no_value
is specified and the user data exists_no_value
is specified and all values in the user data array exist_true
and _false
will be automatically converted to their boolean equivalents.Exists
Does not exist (!exists)
Is true (is-true)
_true
._true
Is false (is-false)
_false
._false
Is not true (is-not-true)
_true
._true
_true
Is not false (is-not-false)
_false
._false
_false
Is empty (is-empty)
Is not empty (is-not-empty)
_true
, _false
, and _no_value
are automatically converted to their appropriate types when used in conditions. For example, _true
becomes the boolean value true
when evaluated.