Question:

Is it possible to add a paypale donate button to a freewebs accounts?

by  |  earlier

0 LIKES UnLike

If so, please tell me how with step by step instructions.

 Tags:

   Report

2 ANSWERS


  1. yes, it would be like any link. Just copy and paste the code into the source code for the web page from the tool that you use on Paypals website.


  2. Step-by-step to create PayPal donation button

       1. Login your PayPal account, goto “Merchant Tools”. Scroll down to “PayPal Website Payments Standard“.

       2. There is a link named “Donations“. Click it to open donation button setup page.

       3. There looks like many fields need to be filled in… Don’t worry, you can ignore those “(optional)” field.

       4. If you want to specific a donation amount, fill in the “Donation Amount:“.

          Note: Once specified the amount, the donator cannot donate more than or less than the specified value.

       5. Under “Choose a donation button to put on your website (optional)“, you can choose a donation button or use your own image.

       6. For “Security Settings“, I recommend to select “Yes” to encrypt your payment button. It will protect your PayPal email address.

       7. Then, click the “Create Button Now” button at the bottom of the page to create your PayPal donation button.

       8. You will be given an HTML code for the donation button. Copy it and paste into your website. Done.

    ======================================...

    The example code below shows the minimum information you need to create a Donate button (in this case, to make a $25.00 USD donation to Team in Training):

    <form name="_xclick" action="https://www.paypal.com/cgi-bin/w... method="post">

    <input type="hidden" name="cmd" value="_xclick">

    <input type="hidden" name="business" value="me@mybusiness.com">

    <input type="hidden" name="item_name" value="Team In Training">

    <input type="hidden" name="currency_code" value="USD">

    <input type="hidden" name="amount" value="25.00">

    <input type="image" src="http://www.paypal.com/en_US/i/btn/b... border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">

    </form>

    Ron

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.