Announcement

Collapse
No announcement yet.

Radio Button for an Installment Payment

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Radio Button for an Installment Payment

    Hello:

    We have an event where we are selling tickets for $120, either in a one-time payment or in 12 installments of $10. The big marketing point of this event is the $10 a month ticket opportunity so we want to create one radio button labeled "Give $10 a month for 1 year" which contains the value of $10 and also automatically creates a recurring payment that will repeat this $10 transaction eleven more times.

    A C&P staff member (Kamran) has assisted me in finding the right code for this but I am having some trouble getting it to work on our Visualforce page. The Visualforce page is named "Riveboat_Cruise_Test_Form"
    Our organization ID is 00Di0000000iX2P and I have granted access.

    The code I used is from this page https://www.clickandpledge.com/Platf.../example/002c/
    Last edited by CnP.Support; 07-16-2015, 11:00 AM.

  • #2
    Good day @Virginia,

    You had missed the following 2 lines of code:

    HTML Code:
    <input type="hidden" name="Periodicity" id="Periodicity" value="" >
     <input type="hidden" name="Installment" id="Installment" value="" >
    You had also not named the ID's incorrectly.

    One of our developers fixed your form. Please test it.

    As part of the test we did 2 transactions:
    • One time payment: $120: 1507161106332361111
    • Recurring: $10/month: 1507161103556731111
    Please test your form and let us know if all works as expected.
    Regards,
    Click & Pledge Support Department

    Join us @ the educational webinars: https://clickandpledge.com/webinars/
    Live Support- read more: https://support.clickandpledge.com/s/article/general-information-live-support/

    Comment


    • #3
      Thank you for updating that. What was the problem with the IDs? Going forward I'll use this form as a template - thanks for the assistance. I've tested the form and it's functioning perfectly.

      Comment


      • #4
        The ID's were not referencing the JavaScript - if you review our code you will see the script name and the ID should match. They were not matching in your code. Also 2 lines of code were not copied.

        Glad to see it worked.

        Let us know if we can be of any further assistance.
        Regards,
        Click & Pledge Support Department

        Join us @ the educational webinars: https://clickandpledge.com/webinars/
        Live Support- read more: https://support.clickandpledge.com/s/article/general-information-live-support/

        Comment

        Working...
        X