Hi
At form settings confirmation I want to provide 3 different confirmation messages. The first two are working and the last is not. I think the problem is I do not know what the value returned by a check box field is. I am assuming it is the check box label but that is not working.
If first radio button field is 'no' then first message is displayed. Code is below. This works.
If second radio button field is 'Yes' then second message is displayed. Code is below. This works
If final field is 'Yes that's OK' the only available tick box value, then the success message get's displayed. Code is below. This does not work ... what have I don't wrong?
--// this works
[gravityforms action="conditional" merge_tag="{Are you a resident of Victoria?:1}" condition="is" value="no"]
[box type="note"]As you do not reside in Victoria Consumer Action is unable to assist you. Please contact your state consumer affairs or fair trading department.[/box]
--// and this works too
[/gravityforms] [gravityforms action="conditional" merge_tag="{Is your enquiry on behalf of a business or does it relate to your business?:4}" condition="is" value="yes"]
[box type="note"]As you have a business related problem Consumer Action is unable to assist you. Please contact Consumer Affairs Victoria or the Law Institute of a Victoria for a referral to a private solicitor.[/box]
[/gravityforms]
--//but this does not!
[gravityforms action="conditional" merge_tag="{Confirmation:18}" condition="is" value="Yes, that's OK."]
[box type="tick"]Your email inquiry has been submitted. One of our staff will respond to you by email of phone as soon as possible. We normally respond to email inquiries within working days.[/box]
[/gravityforms]
Thanks