Paypal Checkout In Mobile Website
I am developing one mobile website for selling products through paypal. When i click the paypal button it redirects to paypal site in desktop mode. i want to change that to mobile
Solution 1:
Do not know what alternative there is for command _xclick
, but with Express Checkout you can use instead of
<inputtype="hidden" name="cmd" value="_express-checkout" />
this
<inputtype="hidden" name="cmd" value="_express-checkout-mobile" />
So the URL looks like https://www.paypal.com/cgi-bin/webscr?cmd=_express-checkout-mobile&token=...
. See more about Express Checkout Mobile here: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_WPECOnMobileDevices .
Try to find similar solution for Your xclick
cmd parameter.
Post a Comment for "Paypal Checkout In Mobile Website"