Gravity forms offers a shortcode for conditional display based on responses.
[gravityforms action="conditional" merge_tag="{:3}" condition="less_than" value="30"] Your value is less than 30 [/gravityforms]
Is there a way to use TWO conditions in this shortcode? For example, I need to do greater than 10 and less than 30, like:
[gravityforms action="conditional" merge_tag="{:3}" condition="greater_than, less_than" value="10,30" ] Your value is greater than 10 and less than 30 [/gravityforms]
The above doesn't work, but wondering if anyone has found a way to do this?