How to remove Credit Card options in Paypal Pro payment field?

  • EggandSpoonLacrosse
    Asked on January 11, 2015 at 5:44 PM

    Hello,

     

    I am wondering how to remove ALL credit card buttons from my form, making only Paypal the payment option.  I can get three cards gone, but not all four.

     

    Any ideas?

     

    Thank you,

    Nicole

  • Welvin Support Team Lead
    Replied on January 11, 2015 at 6:41 PM

    Hi Nicole,

    Why not use the Paypal Standard instead?

    How to remove Credit Card options in Paypal Pro payment field? Image 1 Screenshot 20

     

    You are currently using Paypal Pro which has the credit card option for on-page payments. Well, you can also hide that option using custom CSS codes, below:

    input#input_3_paymentType_credit {

    display: none;

    }

    input#input_3_paymentType_credit + label {

    display: none;

    }

    Here's how you can inject/add the codes to your form: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes.

    Thanks