How can I add an other option to the paypal widget?

  • rfreeman1966
    Asked on October 18, 2018 at 10:44 AM

    I have been asked to add an other option to our donation form.  It currently has some preset options but, the director would like to add an option to allow donations of any amount.  I'm not sure how to make that happen.  Any suggestions 

    Jotform Thread 1615320 Screenshot
  • BJoanna
    Replied on October 18, 2018 at 12:14 PM

    Something like this? 

    1539878731donation Screenshot 10

    You will first have to add one more product to your form and set a price to 1.

    1539878805price Screenshot 21

    Then you have to enable Quantity TextBox option for that product.  

    How to Add Options to Payment Forms

    After that, you can customize the new option with CSS. To my cloned form I added this CSS code:

    input#input_4_quantity_1019_0 {

        position: relative;

        left: 150px;

        top: -32px;

    }

    label.form-sub-label {

        display: none!important;

    }

    span#input_4_1019_price {

        display: none;

    }

    How to Inject Custom CSS Codes

    Here is my demo form - https://form.jotform.com/82904356456968 

    Feel free to test it and clone it

    Hope this meet what you are looking for.