hey everyone..... I need your help.....i've got a "click here to order" button that I want to put paypal code into so that I cna sell it on my site..... How do I do that. Thanks sweetpea
The following code will create an 'add to cart' button. The bold areas are where you need to input your info - the first link is where you'll put the URL to your 'click here to order' button. <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="image" src="[COLOR="Red"]https://www.paypal.com/en_GB/i/btn/btn_cart_SM.gif[/COLOR]" border="0" name="submit" alt="PayPal - The safer, easier way to pay online."> <img alt="" border="0" src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1"> <input type="hidden" name="add" value="1"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="business" value="[COLOR="Red"]yourpaypal@email.com[/COLOR]"> <input type="hidden" name="item_name" value="[COLOR="Red"]Item name here[/COLOR]"> <input type="hidden" name="amount" value="[COLOR="Red"]Item value (eg. 1.00)[/COLOR]"> <input type="hidden" name="shipping" value="0.00"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="return" value="[COLOR="Red"]URL to go to once order is complete[/COLOR]"> <input type="hidden" name="cancel_return" value="[COLOR="Red"]URL to go to if order is cancelled[/COLOR]"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="tax" value="0.00"> <input type="hidden" name="lc" value="GB"> <input type="hidden" name="bn" value="PP-ShopCartBF"> </form> Code (markup):