I have a radio wrapper with radio buttons in Pro Forms.
When the form is filled out, you always get an incorrect output. The wrapper name and the value/selection should be displayed, but instead of the wrapper name, the value of the first radio button is always used.
Are you using the old method to create a summary? Since the release of Live Cariables, you can easily create such a summary yourself by working with live variables in a separate step.
For example:
First Name: {{first_name}}
Last Name: {{last_name}}
If you need fallbacks, you can write; {{your_variable @fallback="Your Fallback"}}
If you need the label, you could write: {{your_variable @label="true"}}
So to make it really dynamic, you could do something like this:
{{first_name @label=“true”}}: {{first:name}}
This will output:
Name: John Doe
Thanks, that works!
I’m just wondering why the fields in {{all_fields}} are essentially “linked” incorrectly.