Multiple Projects

xavyniceday
New Community Member

Is there a way for people to donate to a specific project of my non-profit? Instead of just one DONATE button for all?

Login to Me Too
1 REPLY 1

Snow-Cat
Advisor
Advisor

Yes, but, you will have manually create your Donation button code - the online button maker does have limitations.

 

Here's just one way to do what you have in mind.  Note:

Replace "business" value with your PayPal Email Address or your Merchant Account ID

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>

<head>
  <title></title>
</head>
<body>


<!-- Start of Form -->
<form target="_self" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_donations">
<!-- Replace "business" value with your PayPal Email Address or your Merchant Account ID -->
<input type="hidden" name="business" value="PayPal Email Address or your Merchant Account ID">
<input type="hidden" name="no_shipping" value="1">
Choose Your Organization:&nbsp;&nbsp;
<select name="item_name">
<option value="Good Will" selected>Good Will</option>
<option value="United Way">United Way</option>
<option value="Boys and Girls Club">Boys and Girls Club</option>
<option value="West Side Shelter">West Side Shelter</option>
<option value="Pets and Vets">Pets and Vets</option>
</select>
<br><br>
<input type="hidden" name="currency_code" value="USD">
<!-- Start Tax Override meaning No Tax -->
<input type="hidden" name="tax" value="0">
<!-- End Tax Override -->
<!-- <input type="hidden" name="bn" value="PP-DonationsBF"> -->
<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!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
<!-- End of Form -->



</body>
</html>
Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.