We have a form on our website that takes donations. There is an annual amount of $250 and an option for a monthly payment of $20.83. When users choose the monthly they are getting a $2560 charge every month, not the 1/12th amount.
I am sure my form is the issue, but I am not sure how to correct. Any tips?
Here is that portion of the form.
<form class="DonationForm text-Article-style" id="Donation" method="post" action="https://faas.cloud.clickandpledge.com">
<h3>Donation Amount</h3>
<fieldset class="DonationForm-radioFieldset">
<input name="ItemID1" type="hidden" id="ItemID1" value="1" />
<input name="ItemName1" type="hidden" id="ItemName1" value="Donation" />
<input name="Quantity1" type="hidden" id="Quantity1" value="1" />
<input name="UnitDeductible1" type="hidden" id="UnitDeductible1" value="100%" />
<div>
<input type="radio" name="UnitPrice1" id="UnitPrice1" value="250" checked="checked" />
<label for="UnitPrice1">$250</label>
</div>
<div>
<input type="radio" name="UnitPrice1" id="UnitPrice1" value="Other" />
<label for="UnitPrice1">Other</label>
<input class="-input-width-auto" name="Other1" type="number" id="Other1" />
</div>
</fieldset>
<h3>Frequency</h3>
<fieldset class="DonationForm-radioFieldset">
<div>
<input name="Installment" type="radio" id="Installment1" value="" checked="checked" />
<label for="Installment1">One-Time Donation</label>
</div>
<div>
<input name="Periodicity" type="hidden" id="Periodicity" value="Month" />
<input name="Installment" type="radio" id="Installment2" value="999" />
<label for="Installment2">Monthly Donation<br/> (Your $250 donation will be spread out over an entire year, at $20.83/month)</label>
</div>
</fieldset>
Any assistance would be appreciated.
I am sure my form is the issue, but I am not sure how to correct. Any tips?
Here is that portion of the form.
<form class="DonationForm text-Article-style" id="Donation" method="post" action="https://faas.cloud.clickandpledge.com">
<h3>Donation Amount</h3>
<fieldset class="DonationForm-radioFieldset">
<input name="ItemID1" type="hidden" id="ItemID1" value="1" />
<input name="ItemName1" type="hidden" id="ItemName1" value="Donation" />
<input name="Quantity1" type="hidden" id="Quantity1" value="1" />
<input name="UnitDeductible1" type="hidden" id="UnitDeductible1" value="100%" />
<div>
<input type="radio" name="UnitPrice1" id="UnitPrice1" value="250" checked="checked" />
<label for="UnitPrice1">$250</label>
</div>
<div>
<input type="radio" name="UnitPrice1" id="UnitPrice1" value="Other" />
<label for="UnitPrice1">Other</label>
<input class="-input-width-auto" name="Other1" type="number" id="Other1" />
</div>
</fieldset>
<h3>Frequency</h3>
<fieldset class="DonationForm-radioFieldset">
<div>
<input name="Installment" type="radio" id="Installment1" value="" checked="checked" />
<label for="Installment1">One-Time Donation</label>
</div>
<div>
<input name="Periodicity" type="hidden" id="Periodicity" value="Month" />
<input name="Installment" type="radio" id="Installment2" value="999" />
<label for="Installment2">Monthly Donation<br/> (Your $250 donation will be spread out over an entire year, at $20.83/month)</label>
</div>
</fieldset>
Any assistance would be appreciated.
Comment