Alright, here's my delima.
A submission is sent in from a form that handles Registering Attnedees for an event.
They select the Badge type they want (3-day, 1-day, so on and so on).
And the amount is what sets the Badge in Form Tools because that amount is passed to PayPal to handle the purchasing. However, Prices have now changed and now I have to change the option group to understand the changes.
But the attendees who purchased it at the first price now are invalid if I change the Option Group.
So here's my question: What do I need to do in the Pre-Praiser to get the submission change a Price to a Text line.
Value Input = 35
Value Output = 3dayadult
I can manage to change the Value Input when prices change, but does anyone know the solution to achieving this?
A submission is sent in from a form that handles Registering Attnedees for an event.
They select the Badge type they want (3-day, 1-day, so on and so on).
Code:
<select name="amount" style="width: 365px">
<option value="35">3-Day Adult Badge ($35)</option>
<option value="20">1-Day Adult Badge ($20)</option>
<option value="30">3-Day Youth/Senior/Military ($30)</option>
<option value="18">1-Day Youth/Senior/Military ($18)</option>
</select>
And the amount is what sets the Badge in Form Tools because that amount is passed to PayPal to handle the purchasing. However, Prices have now changed and now I have to change the option group to understand the changes.
But the attendees who purchased it at the first price now are invalid if I change the Option Group.
So here's my question: What do I need to do in the Pre-Praiser to get the submission change a Price to a Text line.
Value Input = 35
Value Output = 3dayadult
I can manage to change the Value Input when prices change, but does anyone know the solution to achieving this?