|
Rank: Starting Member
Groups: Registered
Joined: 1/22/2003 Posts: 3 Location: ,
|
Hi,
I'm doing a donation webpage and buying CD's webpage.
Here is the problem...How do I turn off the shipping preferences for any donation amount?
When the donation page is filled in with a amount, paypal also charges a shipping fee, accoding to the "set" shipping preferences.
In selling Cd's, I have the shipping preferences set up at i.e. charging $3 for selling one CD, $4 for selling two Cd, and so forth.
In the donation page, I have the donation set to no amount, so visitors can donate any amount.
It's coded as:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"><input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHsQYJKoZIhvcNAQcEoIIHojCCB54CAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVV
MxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWw
...this code continues on....."></form>
How do I turn off the shipping preferences for any donation amount??
I tried this on the donation code and it did not work.
<input type="hidden" name="shipping" value="0.00">
<input type="hidden" name="shipping2" value="2.00">
So..what I need..shipping preferences that will not work for sending in donations..
I've tried everything and still can't get it to work.
Larry Noack
noack@doitnow.com
Larry Noack
|
|
Rank: Starting Member
Groups: Registered
Joined: 11/21/2003 Posts: 511 Location: ,
|
If you want to set shipping to zero for donation buttons. You will need to not use the encrypted code and include shipping=0 in the HTML code.
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="yyy@mail.com"> <input type="hidden" name="item_name" value="Donation"> <input type="hidden" name="amount" value="2.00"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0"> <input type="hidden" name="shipping" value="0"> <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> </form>
Paulam PayPal Tech Support Agent PayPal an eBay company
|