Clean It Up

UK Window Cleaning Forum => Window Cleaning Forum => Topic started by: poole bay on April 14, 2011, 09:35:01 am

Title: Adding pay pal to web site
Post by: poole bay on April 14, 2011, 09:35:01 am
its really hard to add, to get the pay now button have you got to pay the £20 a month fee.  iv tryed all sorts of how to add it to the site cant even see the pay now button,  they say ready in 15 mins what a joke any help on this would be great regards carl  ???
Title: Re: Adding pay pal to web site
Post by: Nick Wareham on April 14, 2011, 10:08:25 am
I struggled with this for a while, then I solved it!

Code: [Select]
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> 
<input type="hidden" name="cmd" value="_xclick"> 
<input type="hidden" name="business" value="YOUR_PAYPAL_EMAIL_ADDRESS">
<input type="hidden" name="on0" value="Customer Name">
<input type="hidden" name="on1" value="Customer Address">
Name:<br>
<input type="text" name="os0" /><br>
Address:<br>
<input type="text" name="os1" /><br>
Amount to pay (£):<br>
<input type="text" name="amount" />
<input type="hidden" name="item_name" value="Window Cleaning" />
<input type="hidden" name="no_shipping" value="0" />
<input type="hidden" name="no_note" value="1" />
<input type="hidden" name="currency_code" value="GBP" />
<br />
<input name="submit" type="submit" value="Pay Now" />
</form>

Obviously, change YOUR_PAYPAL_EMAIL_ADDRESS to your actual paypal email address!

You dont need to pay £20 a month, a standard paypal account is all you need.
Title: Re: Adding pay pal to web site
Post by: poole bay on April 14, 2011, 11:16:55 am
Iv tried your link it comes up with what I copyed a load of writing  ???
Title: Re: Adding pay pal to web site
Post by: Nick Wareham on April 14, 2011, 11:37:13 am
You need to inert it into the code of the page.

Show me where your webpage is and I'll help you do it.