YetAnotherForum
Welcome Guest Search | Active Topics | Log In | Register

How do I turn off the shipping pref..for donations Options
Noack
#1 Posted : Wednesday, October 20, 2004 1:16:48 PM
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
Sponsor  
 
PayPal_Paulam
#2 Posted : Wednesday, October 20, 2004 5:46:35 PM
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.

&lt;form action="https://www.paypal.com/cgi-bin/webscr" method="post"&gt;
&lt;input type="hidden" name="cmd" value="_xclick"&gt;
&lt;input type="hidden" name="business" value="yyy@mail.com"&gt;
&lt;input type="hidden" name="item_name" value="Donation"&gt;
&lt;input type="hidden" name="amount" value="2.00"&gt;
&lt;input type="hidden" name="no_note" value="1"&gt;
&lt;input type="hidden" name="currency_code" value="USD"&gt;
&lt;input type="hidden" name="tax" value="0"&gt;
&lt;input type="hidden" name="shipping" value="0"&gt;
&lt;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!"&gt;
&lt;/form&gt;


Paulam
PayPal Tech Support Agent
PayPal an eBay company
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

YAFVision Theme by Jaben Cargman (Tiny Gecko)
Powered by YAF | YAF © 2003-2009, Yet Another Forum.NET
This page was generated in 0.292 seconds.