Results 1 to 9 of 9

Thread: Continue Shopping button not showing up
      
   

  1. #1
    stretcharmstrong is offline Private First Class
    Join Date
    Apr 2008
    Posts
    8

    Question Continue Shopping button not showing up

    I know this subject seems like its been exhausted but I have read all the posting on this and done everything like people say to do but I am not getting the 'continue shopping' button to show up in the paypal shopping cart. The only option is the 'checkout' button. I have copy and pasted the html from paypal for the 'add to cart' button and the 'view cart' button. When I click on these buttons from my site I go correctly to a paypal shopping cart but there is no 'continue shopping' button there...I don't know what else to try...I have also emails paypal about this...any other suggestions would be helpful...thanks.

  2. #2
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,715

    Default Re: Continue Shopping button not showing up

    Hi, are you using fire fox? As i know there was a problem with this a wile back when using this browser. (Wasn't sure if it was ever resolved)

  3. #3
    stretcharmstrong is offline Private First Class
    Join Date
    Apr 2008
    Posts
    8

    Default Re: Continue Shopping button not showing up

    No I'm not in firefox...I read about the problem you're talking about as I have read all of the posting on this subject but it is still not working...and I can't be that incompetent.

  4. #4
    jkadin's Avatar
    jkadin is offline Brigadier General
    Join Date
    Jan 2008
    Location
    woodbourne new york
    Posts
    1,479

    Default Re: Continue Shopping button not showing up

    Just these past few days I have done about fifty pay pal buttoms I have no problem with them I done it in both browsers are you using a different stlye thats showed all mine came up with the continue shopping

    Joe
    www.anytime-figurines.com

  5. #5
    stretcharmstrong is offline Private First Class
    Join Date
    Apr 2008
    Posts
    8

    Default Re: Continue Shopping button not showing up

    This is really bizarre...I am not doing anything different or unusual with the buttons, just following the straight forward directions and can not for the like of me get a continue shopping button. I am a premier member of paypal not a business member, but that should not matter right? I can't think of anything else to do...

  6. #6
    LadyEye's Avatar
    LadyEye is offline General & Forum Moderator
    Join Date
    Jun 2006
    Location
    Canada
    Posts
    10,539

    Default Re: Continue Shopping button not showing up

    Hi.

    You should have no difficulty if you do so directly at the paypal site .. as opposed to doing so in blue voda ..

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    02036089024 / United Kingdom
    291916438 / Australia

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  7. #7
    stretcharmstrong is offline Private First Class
    Join Date
    Apr 2008
    Posts
    8

    Default Re: Continue Shopping button not showing up

    Thanks, but I am doing it from the paypal site and I can still not get the continue shopping button to appear anywhere?!?!?!!?

  8. #8
    LadyEye's Avatar
    LadyEye is offline General & Forum Moderator
    Join Date
    Jun 2006
    Location
    Canada
    Posts
    10,539

    Default Re: Continue Shopping button not showing up

    Hi .. you can check your code against this code .. this has the continue shopping, perhaps you might be able to spot what you might be missing in your code ..


    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="image" src="http://www.xxxxxx.com/xxx.jpg" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
    <img alt="" border="0" src="https://www.paypal.com/en_US/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="emailaddress">
    <input type="hidden" name="item_name" value="product">
    <input type="hidden" name="item_number" value="xxx">
    <input type="hidden" name="amount" value="price">
    <input type="hidden" name="no_shipping" value="0">
    <input type="hidden" name="return" value="http://www.xxxxxxxx.com/thankyou.html">
    <input type="hidden" name="cancel_return" value="http://www.xxxxxxxx.com/contactus.html">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="lc" value="US">
    <input type="hidden" name="bn" value="PP-ShopCartBF">
    </form>


    You can take this code, modify things to apply to yourself (I am sure you can see where) and try it ..

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    02036089024 / United Kingdom
    291916438 / Australia

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  9. #9
    stretcharmstrong is offline Private First Class
    Join Date
    Apr 2008
    Posts
    8

    Default Re: Continue Shopping button not showing up

    Finally got it worked out with PayPal techies...
    FYI: if try the above code and STILL don't get the continue shopping button enter the following new line of code (the middle line) in this exact place and it will work...has something to do with browser settings and adding this code will cause the continue shopping button to be force
    populated regardless of your browser settings..

    <input type="hidden" name="cmd" value="_cart">
    <input type="hidden" name="shopping_url" value="http://www.YourDomain.com/products.html">
    <input type="hidden" name="business" value="emailaddress">

    make sure you put the page of your site (in this new code) that you want the continue button to send your customers to...

    Thanks PayPal!!!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49