Working with the PayPal API and using the Name-Value Pair Interface PHP source codes from SDKs and Downloads: Simplify Integrations with Downloads and SDKs.

My question is similar to "Removing (or prefilling) the address details for PayPal Express Checkout" but I don't want shipping cost/address or anything related about shipping at all.

I keep all shipping details on my system (even sometimes shipping doesn't even apply and there is no charge for it) and I just want user to pay through PayPal without shipping address and shipping cost.

How can I disable shipping part of checkout?

link|improve this question

77% accept rate
feedback

3 Answers

up vote 4 down vote accepted

If you're using the newer API, you could also pass NOSHIPPING=1 (not no_shipping)

Further details about all possible parameters to the SetExpressCheckout here:

https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_r_SetExpressCheckout

link|improve this answer
feedback

Hey Ergec, just pass along the no_shipping parameter with a value of 1.

From PayPal's documentation:

no_shipping

Do not prompt payers for shipping address. Allowable values:
0 – prompt for an address, but do not require one
1 – do not prompt for an address
2 – prompt for an address, and require one
The default is 0.
link|improve this answer
I put no_shipping=1 into $nvpstr but still it asks for shipping. And I just noticed that it's adding tax too. All prices include tax already so I need to get rid of tax field too. Please help!! – Ergec Nov 26 '10 at 9:17
ok here is what I did and worked. It's not adding shipping cost and tax anymore. Just commented out current $nvpstr variable in ReviewOrder and put this line $nvpstr = "&AMT=" . $amount . "&ReturnUrl=".$returnURL."&CANCELURL=".$cancelURL ."&CURRENCYCODE=" . $currencyCodeType; $amount is sent from modified SetExpressCheckout.php . Removed all input boxes and left paymentType, currencyCodeType and amount only. – Ergec Nov 26 '10 at 11:43
feedback

@Ergec:i tried this:

$nvpstr = "&ADDRESSOVERRIDE=1".$shiptoAddress."&L_NAME0=".$L_NAME0."&L_NAME1=".$L_NAME1."&L_AMT0=".$L_AMT0."&L_AMT1=".$L_AMT1."&L_QTY0=".$L_QTY0."&L_QTY1=".$L_QTY1."&MAXAMT=".(string)$maxamt."&ITEMAMT=".(string)$itemamt."&AMT=".$itemamt."&ReturnUrl=".$returnURL."&CANCELURL=".$cancelURL."&CURRENCYCODE=".$currencyCodeType;

It works.here we can also use shipping address eventhough we are not charging any amount.

link|improve this answer
i think it will be ok if we are not setting the paymentType argument – user869379 Aug 17 '11 at 8:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.