We have 4 main roles and guides are commonly shared between them. How can I set up a guide to show to more than one specific role, but not all?
~~~~~~~~~~~~~~~~~~~
When you create a field matching condition you can use a regular expression.
To tell Iridize that the string is a regular expression surround it with square brackets [].
So, let's say you have the following roles in your application: admin, manager, advisor. And let's say you want a certain guide to show only if the user is either advisor or admin.
In the activation conditions you'd want to add the following condition:
When user has field user_role = [admin|advisor]
Note that you could also use a negative condition
When user has NOT field user_role = manager
0 Comments