I have a form here: https://www.emkinstitute.org/join-an...edy-staff-club
When someone chooses a recurring payment plan, I'd like it to keep going until they actively cancel it, much like how Netflix or my cable service works. I'm hoping you can help.
Here is my code for the recurring portion of the form:
<div>
<input type="radio" name="Installment" id="Installment1" value="12" />
<label for="Installment1">Monthly Donation<br/> (Your donation will be spread out over an entire year.</label>
<input name="Periodicity" type="hidden" id="Periodicity" value="Month" />
<input name="RecurringMethod" type="hidden" id="RecurringMethod" value="Installment" />
</div>
I looked here for some guidance, but can't make heads nor tails of the right answer:
Any tips for making all recurring options infinite would be appreciated.
Extract:
Recurring Transactions
Recurring Transaction is an optional field
*The optional “LastPaymentDate” may be used in place of Installments when an end date for a recurring payment is needed. In certain forms a donor may want to choose a recurring option where an end date is selected rather than the number of payments. End date has the following attributes:
Special Condition:
When someone chooses a recurring payment plan, I'd like it to keep going until they actively cancel it, much like how Netflix or my cable service works. I'm hoping you can help.
Here is my code for the recurring portion of the form:
<div>
<input type="radio" name="Installment" id="Installment1" value="12" />
<label for="Installment1">Monthly Donation<br/> (Your donation will be spread out over an entire year.</label>
<input name="Periodicity" type="hidden" id="Periodicity" value="Month" />
<input name="RecurringMethod" type="hidden" id="RecurringMethod" value="Installment" />
</div>
I looked here for some guidance, but can't make heads nor tails of the right answer:
Any tips for making all recurring options infinite would be appreciated.
Extract:
Recurring Transactions
Recurring Transaction is an optional field
Common name | FaaS Field name | Example | Maximum Length |
Recurring Method | RecurringMethod | Subscription | Subscription Installment |
Number of payments* | Installment | 12 | 20 |
Periodicity | Periodicity | Month | Week 2 Weeks Month 2 Months Quarter 6 Months Year |
- LastPaymentDate: dd/mm/yyyy
- LastPaymentDateYear (yy)
- LastPaymentDateMonth (mm)
- LastPaymentDateDay (dd)
Special Condition:
- Installment = 999: The special case of 999 translates to indefinite recurring payments. The receipt message for the recurring payment will NOT display the END DATE and will ask the patron to contact the organization for cancellation.
Comment