1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Paypal Buynow/subscription Buttons

Discussion in 'PayPal' started by Drv, Jan 31, 2013.

  1. #1
    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?
     
    Drv, Jan 31, 2013 IP
  2. alasdairsim

    alasdairsim Active Member

    Messages:
    118
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    78
    #2
    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.
     
    alasdairsim, Feb 19, 2013 IP