I have a static html page and i want to add 2 subscription buttons, problem is that the first button works well but the other wont redirect to billing page insted it goes to https://www.paypal.com/home I deleted the second button on paypal, i have generated another but it wont work same problem occurs. Any advice or solutions?
Maybe do your own html for the button: this could should work after you edit it with your own information: <form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick-subscriptions"> <input type="hidden" name="business" value="me@mybusiness.co.uk"> <input type="hidden" name="currency_code" value="GBP"> <input type="hidden" name="no_shipping" value="1"> <input type="image" src="http://www.paypal.com/en_GB/i/btn/x-click-but20.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> <input type="hidden" name="a3" value="5.00"> <input type="hidden" name="p3" value="1"> <input type="hidden" name="t3" value="M"> <input type="hidden" name="src" value="1"> <input type="hidden" name="sra" value="1"> </form> Code (markup): a3 is how much the recurring payment is, p3 is the time period between each payment and t3 is Days, Weeks, Months, Years. So the above example is set to £5, 1 time, per month. If you wanted it bi-monthy then it would be t3=M, p3=2 etc... Also, change the to your PayPal email address and also the currency code as it is set to GBP above, unless that is the currency you want. Alasdair.