6 replies
Hey there,

I am look for some help...

Is anyone aware of "How To" videos to show me the following with Paypal buttons?

1) Integrate with Aweber so purchaser is added to a new list and email fires off straight away
2) Use you own "buy now" buttons
3) Put the button on a timer so it appears after a couple of minutes?

Thanks in advance, sorry if this is basic knowledge request....

Jon
#button #paypal
  • Profile picture of the author tecHead
    1) Integrate with Aweber so purchaser is added to a new list and email fires off straight away
    aWeber has a tutorial in their help section for this. Just log in and search for PayPal

    2) Use you own “buy now” buttons
    https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_html_buynow_buttons

    3)
    Put the button on a timer so it appears after a couple of minutes?
    jQuery: The Write Less, Do More, JavaScript Library

    There are a number of different scripts/add-ons available. You'll need to do some research to find the one that suits your specific needs the best.

    HTH
    PLP,
    tecHead
    Signature
    Learn Everything You Need to Know About CryptoCurrencies
    Automation is the primary conduit to successful relaxation
    {{ DiscussionBoard.errors[2419732].message }}
  • Profile picture of the author Michael Oksa
    Hi Jon,

    2. Create the button, but copy the EMAIL code at the final step. You can then use this as the target link behind any image you choose.

    All the best,
    Michael
    Signature

    "Ich bin en fuego!"
    {{ DiscussionBoard.errors[2419738].message }}
  • Profile picture of the author Michael Oksa
    Here's a screen capture that may help.

    http://www.warriorforum.com/attachme...1&d=1280765610

    Just click the Email tab and copy the line of code from there.

    ~Michael
    Signature

    "Ich bin en fuego!"
    {{ DiscussionBoard.errors[2419773].message }}
  • Profile picture of the author theIMgeek
    Regarding question #3, here's a bit of code that will make any page content magically appear after N seconds.

    Where it has 5*1000, 5 is the number of seconds before the box becomes visible so you can change that to anything you like. (the times 1000 is because javascript works with milliseconds)

    Any HTML you put inside the "delayshow" DIV element will remain hidden until the timer runs out. So you can put your PayPal button code in there.

    HTML Code:
    <script type="text/javascript">
        window.onload = function() {
            setTimeout("document.getElementById('delayshow').style.display='block'",5*1000);
        };
    </script>
    <div id="delayshow" style="display: none;">Ta Da!</div>
    -Ryan
    Signature
    FREE WSO: Protect and Automatically Deliver Your Digital Products

    Ask the Internet Marketing Geek
    <-- Happy to help with technical challenges
    MiniSiteMaker.org <-- Free software to make your mini-sites fast and easy
    {{ DiscussionBoard.errors[2420046].message }}
    • Profile picture of the author SledgeHammer
      Originally Posted by RJP View Post

      Regarding question #3, here's a bit of code that will make any page content magically appear after N seconds.

      Where it has 5*1000, 5 is the number of seconds before the box becomes visible so you can change that to anything you like. (the times 1000 is because javascript works with milliseconds)

      Any HTML you put inside the "delayshow" DIV element will remain hidden until the timer runs out. So you can put your PayPal button code in there.

      HTML Code:
      <script type="text/javascript">
          window.onload = function() {
              setTimeout("document.getElementById('delayshow').style.display='block'",5*1000);
          };
      </script>
      <div id="delayshow" style="display: none;">Ta Da!</div>
      -Ryan
      But how can I put a hyperlink button using the JS code ?
      Signature
      Mithun on the Web
      {{ DiscussionBoard.errors[2427706].message }}
  • Profile picture of the author Jon Daniels
    Awesome, thanks for your help guys. Appreciated

    Jon
    Signature

    Seasoned Sales Professional since 1999 sharing my knowledge online. Check out my phone closers cheat sheet.

    {{ DiscussionBoard.errors[2422573].message }}

Trending Topics