I just need one payment button linked to paypal.
what is the best way to do this?
Its for a registration. So its just one set fee, I do not need anything fancy.
Need a payment button....
From the PayPal site – https://merchant.paypal.com >Business >Products and Services
Your Payment Button Options:
We have a great choice of payment buttons. If you'd like to see how they look on your site, choose a button below and follow the instructions. When you receive your first order, we'll show you how to sign up for a PayPal Business Account so you can collect your money. Add a payment button to your site now and sign up later when you receive your first payment.
Your Payment Button Options:
We have a great choice of payment buttons. If you'd like to see how they look on your site, choose a button below and follow the instructions. When you receive your first order, we'll show you how to sign up for a PayPal Business Account so you can collect your money. Add a payment button to your site now and sign up later when you receive your first payment.
I love deadlines. I like the whooshing sound they make as they fly by. (Douglas Adams)
https://www.callendales.com
https://www.callendales.com
Or, if you go to PayPal, you can select your button and fill in the info boxes (price...). PayPal will generate the code snippet for your site.
PayPal Buttons
PayPal Buttons
I love deadlines. I like the whooshing sound they make as they fly by. (Douglas Adams)
https://www.callendales.com
https://www.callendales.com
I use simple PayPal buy now buttons. I have a Paypal account. You can actually use your own images as buttons.
I even trialed their add to cart system which is easy to use. Requires more work than Shopping Cart Creator.
I only sell software so at the most I will only need 5 or 6 buttons.
The code for a button is easy, fill in the values.
<div id="container">
<form target="PayPal" action="https://www.paypal.com/cgi-bin/webscr" method="post" style="margin:0;padding:0">
<input type="hidden" name="business" value="Your account email">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="item_name" value="">
<input type="hidden" name="item_number" value="">
<input type="hidden" name="amount" value="">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="shipping" value="">
<input type="hidden" name="shipping2" value="">
<input type="hidden" name="handling" value="">
<input type="hidden" name="return" value="">
<input type="hidden" name="cancel_return" value="">
<input type="hidden" name="undefined_quantity" value="0">
input type="hidden" name="receiver_email" value="Your account email">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="no_note" value="1">
<div id="PayPal1" style="position:absolute;left:368px;top:105px;width:80px;height:63px;z-index:0">
<input type="image" name="submit" src="Put your image here" style="position:absolute;left:0px;top:0px;"
alt="Make payments with PayPal, it's fast, free, and secure!">
</div>
</form>
</div>
A lot of people are reluctant to buy online especially using Credit Cards. I am thinking of offering them the chance to use Cheques or Money orders. I have noticed that it is possible to get prepaid credit cards that can be topped up, I suppose a bit like a debit card in a way. I am thinking of exploring that and put up a PDF to advertise the fact. I may not be the one to benefit but it may help my adsence tick over
I even trialed their add to cart system which is easy to use. Requires more work than Shopping Cart Creator.
I only sell software so at the most I will only need 5 or 6 buttons.
The code for a button is easy, fill in the values.
<div id="container">
<form target="PayPal" action="https://www.paypal.com/cgi-bin/webscr" method="post" style="margin:0;padding:0">
<input type="hidden" name="business" value="Your account email">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="item_name" value="">
<input type="hidden" name="item_number" value="">
<input type="hidden" name="amount" value="">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="shipping" value="">
<input type="hidden" name="shipping2" value="">
<input type="hidden" name="handling" value="">
<input type="hidden" name="return" value="">
<input type="hidden" name="cancel_return" value="">
<input type="hidden" name="undefined_quantity" value="0">
input type="hidden" name="receiver_email" value="Your account email">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="no_note" value="1">
<div id="PayPal1" style="position:absolute;left:368px;top:105px;width:80px;height:63px;z-index:0">
<input type="image" name="submit" src="Put your image here" style="position:absolute;left:0px;top:0px;"
alt="Make payments with PayPal, it's fast, free, and secure!">
</div>
</form>
</div>
A lot of people are reluctant to buy online especially using Credit Cards. I am thinking of offering them the chance to use Cheques or Money orders. I have noticed that it is possible to get prepaid credit cards that can be topped up, I suppose a bit like a debit card in a way. I am thinking of exploring that and put up a PDF to advertise the fact. I may not be the one to benefit but it may help my adsence tick over
The Guy from OZ
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.