Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Inconsistent checkout screens for Paypal express checkout

Tags:

paypal

We're developing an application that uses Paypal Express Checkout, and we're finding that we get two different landing pages. We're actually finding a problem that seems superficially similar to Can you force PayPal Payments Standard API to show credit card fields first?, but with a few differences:

  1. Everything is fine with the sandbox, and we get exactly the appearance (credit card first) we want.

  2. On the live site, about 50% of the time we get exactly the appearance (credit card first) we want.

  3. Sometimes, we get a more "mobile-like" landing page, with the credit card stuff totally hidden in a "Check out as a guest" button, as shown.

This feels like a failing A/B test to me. We're sending exactly the variables in the question linked above, and as I said, all works fine with the older landing pages. I know there are also cookie issues, but in this case, we're seeing it even when Paypal is not able to identify an account and when cookies are cleared.

Does anybody know if there is anything we can do to work around this?

I can add code if needed, but the problem appears to be more data than logic.

New landing page

like image 441
Stuart Watt Avatar asked Nov 29 '13 15:11

Stuart Watt


People also ask

Is PayPal Express checkout deprecated?

PayPal has deprecated PayPal Express payment. Existing forms with PayPal Express will still work, but we highly recommend switching to/using our newest PayPal integrations, such as the following: Paypal Checkout. Paypal Business.

How does PayPal Express checkout work?

PayPal Express Checkout helps boost sales by giving your customers the ability to pay by credit card or from the security of their personal PayPal accounts. During checkout, the customer is redirected to the secure PayPal site to complete the payment information.

Is PayPal Express checkout the same as PayPal?

PayPal comparison: ExpressPayPal Express is very similar to PayPal Standard with one major difference: the checkout flow. PayPal Express avoids the IPN issues that arise with PayPal Standard. Customers will be directed to PayPal from your site, but they don't complete checkout at PayPal.


1 Answers

I had the same question after I started to see users coming in from the 'new style' page.

I found the answer here:

Paypal express "order summary" page

I added the "force_sa=true" parameter to my Paypal URL:

https://www.paypal.com/cgi-bin/webscr?cmd=_express-checkout&force_sa=true&token=…

The new page is definitely weighted to appear more often on mobile devices. Without the parameter I get the new style page on a iPad after about 5 refreshes, with the parameter I can refresh as much as I like and never see the new page.

Obviously, PayPal will roll out the new page to everyone in the end, but this technique allows us a stop gap while we get ready for it ;-)

like image 137
underscorePez Avatar answered Oct 10 '22 09:10

underscorePez