Component form fields can be shown or hidden based on conditional logic entered into the fields "Show field if" input. Other fields in the same form are used in the condition and referenced by their machine name.
To access the Show field if input:
As an example, to show Field B only when Field A contains the word 'bananas', enter [field.a] is equal to 'bananas'
in the Show field if input of Field B. As the user types into Field A, Field B appears when the condition (that the field equals 'bananas') is true. The conditional syntax used is a natural language version of javascript.
Field B
Field A
Let's break down that example statement.
[field.a]
refers to machine name of the field being used for the condition.is equal to
is the operator. It means that the value on the left must be equal to the value on the right. In this case 'bananas'. There are many operators that can be used.'bananas'
because we are comparing the value of an input, which is a string, the value on the right is wrapped in single quotes. Some fields have values that are numbers (like the range slider) or they can consist of multiple properties (like the colour picker that has both an RGBA and a HEX code value as well as user defined tags.).You can use many different types of operator.
When comparing against a string value, the value should be wrapped in single quotes.
is equal to
- returns true if the values on both sides are exactly the sameis not equal to
- returns true if the values on both sides are not the samecontains/has/includes
(can be used interchangeably) - returns true if the value on the right can be found within the value on the left.If you wish to simply check that a string value has been entered but are not concerned with what text has been entered you can use the short hand [field.text]
. This will return true if any value is entered into the field.text.
Note: The WYSIWYG is not included here, see Special Cases.
When comparing against a number value, the number should not be wrapped in quotes.
is equal to
- returns true if the values on both sides are exactly the same.is not equal to
- returns true if the values on both sides are not the sameis gt
- returns true if the value on the left is greater than the value on the right.is lt
- returns true if the value on the left is less than the value on the right.is gte
- returns true if the value on the left is greater than or equal to the value on the right.is lte
- returns true if the value on the left is less than or equal to the value on the right.When comparing against a boolean value you should use true
or false
not wrapped in quotes.
is equal to
- returns true if the values on both sides are exactly the same.is not equal to
- returns true if the values on both sides are not the same.[field.toggle] is equal to true
can be shortened to simply [field.toggle]
Toggle (when type is set to "Toggle (true/false)").
To write a condition using the WYSIWYG field you should use the text includes
operator. This is because the WYSIWYG field contains HTML markup, not just the text you see. You need to tell Site Studio to access the text part specifically like in the example below.
[field.content] text includes 'hello'
If required, you can also use the operator below which looks at which text format is being used.
[field.content] textFormat is 'cohesion'
You must use the machine name of the text format. The Site Studio text format has the machine name of 'cohesion' because it used to be called Cohesion.
There are 4 pieces of information contained within the selected color that you may wish to access.
To access the properties use the following
[field.color-picker] hex is '#ffffff'
[field.color-picker] rgba is 'rgba(255, 255, 255, 0.5)'
[field.color-picker] variable is '$coh-color-white'
[field.color-picker] tags include 'Headings'
The only piece of information available to you from the icon picker is the font family.
[field.icon-picker] fontFamily is 'icomoon'
Conditions can be joined together to achieve more complex logic. Two or more statements can be combined using the AND
or OR
logical operators. Logical operators are case insensitive (so you can use AND or and interchangeably)
[field.fruit] is equal to 'bananas' AND [field.animal] is equal to 'monkey'
[field.fruit] is equal to 'bananas' OR [field.fruit] is equal to 'oranges'
[field.range] is gte 5 AND [field.range] is lt 20
[field.color-picker] tags include 'Background' OR [field.color-picker] tags include 'Text'
If this content did not answer your questions, try searching or contacting our support team for further assistance.
Wed Mar 26 2025 01:05:00 GMT+0000 (Coordinated Universal Time)