I have a pricing field called "Vote" with 3 options:
Buy 1 Vote for $1.00
Buy 10 Votes for $10.00
Buy 100 Votes for $100.00
I'm using Redirect to pass a querystring to another form to process payment.
That form is expecting the following post variable:
amount1
I have tested that if I submit a URL with &amount1=1.00 the payment processing form accurately parses it.
When I insert the field into the query string creator in Form Settings of my Gravity Form it produces the following:
amount1={Vote:2}
However, the querystring generated by this is the label, not the price. For instance if I pick the last option on the form and submit the querystring reads:
amount1=Buy%20100%20Votes%20for%20$100
I tried enabling values to see if it would pass the value instead. It still passes:
amount1=Buy%20100%20Votes%20for%20$100
What do I need to do to make this query string pass the value of the field, not the label?