Trying to design an order form that links with Venmo and PayPal

189 Views Asked by At

I have a client that wants an order form for service on his website. He is requesting a form that will add up all the options and then allow online payments through either PayPal or Venmo. I have searched online and cannot seem to locate the correct template that he can use. Are there any suggestions or templates that will easily translate to their website. I am trying to do this as simply as possible.

1

There are 1 best solutions below

1
On

To process the payment, use PayPal's Standard payments with &enable-funding=venmo as a query parameter to the SDK.

You can find a demo with sample code at https://developer.paypal.com/demo/checkout/#/pattern/client

Adding up all the options and calculating a total will need to be done with Javascript -- or on the server side before order creation if you implement a server-based integration.