We have an online form (https://www.asle.org/join-our-commun...mbership-form/) using the FAAS service. All has generally worked well for us, with one exception.
We are not receiving either payments or data from users who are attempting to make a "VOLUNTARY ADDITIONAL DONATION TO ASLE". This part of the form uses a radio button GUI and ends with a user-entered value option. We recognize that this is a challenging process for your service (see link), but we seem to have followed the online directions in this area to a 'T'. Yet without success.
I have tested the data transmission using the verify.faas url, and the voluntary donation values using the OTHER field do seem to pass successfully into the system. For some reason, then, the data is being lost within C&P so far as I can tell.
I am copying the pertinent code below (with some excisions for space: <tr>, etc.). Do you see anywhere we may have gone wrong?
Gratefully Yours,
Dan
<td><table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td width="7%">
<input name="ItemID11" type="hidden" id="ItemID11" value="1" />
<input name="Quantity11" type="hidden" id="Quantity11" value="1" />
<input name="UnitDeductible11" type="hidden" id="UnitDeductible11" value="100%" />
<input name="SKU11" type="hidden" id="SKU11" value="DON-100-LMN" />
<input type="radio" name="UnitPrice11" id="UnitPrice11" value="0" /></td>
<td width="93%">No additional donation</td>
...
<td><input type="radio" name="UnitPrice11" id="UnitPrice11" value="50" /></td>
<td>$50</td>
<td><input type="radio" name="UnitPrice11" id="UnitPrice11" value="Other" /></td>
<td><input name="Other11" type="text" id="Other11" size="10" /></td>
We are not receiving either payments or data from users who are attempting to make a "VOLUNTARY ADDITIONAL DONATION TO ASLE". This part of the form uses a radio button GUI and ends with a user-entered value option. We recognize that this is a challenging process for your service (see link), but we seem to have followed the online directions in this area to a 'T'. Yet without success.
I have tested the data transmission using the verify.faas url, and the voluntary donation values using the OTHER field do seem to pass successfully into the system. For some reason, then, the data is being lost within C&P so far as I can tell.
I am copying the pertinent code below (with some excisions for space: <tr>, etc.). Do you see anywhere we may have gone wrong?
Gratefully Yours,
Dan
<td><table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td width="7%">
<input name="ItemID11" type="hidden" id="ItemID11" value="1" />
<input name="Quantity11" type="hidden" id="Quantity11" value="1" />
<input name="UnitDeductible11" type="hidden" id="UnitDeductible11" value="100%" />
<input name="SKU11" type="hidden" id="SKU11" value="DON-100-LMN" />
<input type="radio" name="UnitPrice11" id="UnitPrice11" value="0" /></td>
<td width="93%">No additional donation</td>
...
<td><input type="radio" name="UnitPrice11" id="UnitPrice11" value="50" /></td>
<td>$50</td>
<td><input type="radio" name="UnitPrice11" id="UnitPrice11" value="Other" /></td>
<td><input name="Other11" type="text" id="Other11" size="10" /></td>
Comment