i want to charge a one time fee from the customers of my website so i am using Paypal buy now button but the problem is customer have to enter shipping details as well whereas in my case there is not product to ship so how to disable this option?

link|improve this question

17% accept rate
feedback

2 Answers

As per these instructions , under the "Shipping Address" header, when you generate your button code in PayPal you can choose "Don't prompt for address".

link|improve this answer
feedback

You'll want to set 'no_shipping' to '1'.
E.g. <input type="hidden" name="no_shipping" value="1">
See also https://merchant.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_Appx_websitestandard_htmlvariables

link|improve this answer
thanks it helped – nida Sep 20 '11 at 8:17
Great! Ensure you mark this answer as being helpful as well please; this improves the quality of StackOverflow and rewards those contributing answers. – Robert Sep 20 '11 at 17:23
feedback

Your Answer

 
or
required, but never shown

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