Reputation: 287
I am using paypal express checkout in php.
Click on the PayPal Checkout Button in the Checkout Page, it redirects to this url:
However, most of the time it redirects to this URL (which requires a PayPal account):
Any ideas?
Thanks
Upvotes: 0
Views: 807
Reputation: 342
The transformed URL is somehow related to your browser's SESSION, and it is not relevant to the guest checkout. Guest checkout is not always offered for all buyers. Network environment safety and some other factors will be considered for the final decision.
Upvotes: 0
Reputation: 887
There is an answer for same question Here:
"PayPal Payments Standard" has that feature available. Please check your account settings here: Profile > My selling tools (or: My selling preferences) > Website Preferences > Update > PayPal Account Optional: On.
For "Express Checkout" you will have to set SOLUTIONTYPE=Sole in your SetExpressCheckout API call. However, this not fully guarantee that guest payment will be allowed, it depends also the country of the seller.
Upvotes: 0
Reputation: 1646
Please check below documentation for Paypal express checkout
https://developer.paypal.com/docs/classic/products/express-checkout/
You can also see the demo here and can download the code from below URL
https://demo.paypal.com/us/demo/home
I hope this will help you.
Upvotes: 0