Skip to main content

PayPal Community

  • Dashboard
  • Send and Request
  • Wallet
  • Business
  • Help
Log in

Le forum de Communauté ne sera plus disponible à partir du 30 Juin 2025. Le Forum de la communauté n’est pas disponible pour les nouveaux messages ou les réponses; les articles précédents restent disponibles pour vérification. Afin de connaître les options d’assistance complètes, rendez-vous sur PayPal.com/HelpCenter

Si vous souhaitez signaler du contenu illégal et contraire au Règlement sur les services numériques de l’Union Européenne (DSA), veuillez cliquer ici.

since ‎May-17-2011
urba
urba Contributor
Contributor
6
Posts
1
Kudos
0
Solutions
Your 3rd PayPal Anniversary
Your PayPal Anniversary
Your 5th PayPal Anniversary
The Return
Organized
Liked
Ice Breaker
Active
View all
Latest Contributions by urba
  • Topics urba has Participated In
  • Latest Contributions by urba

Re: Button coding for web site

by urba Contributor in About Business
‎May-28-2017 09:22 PM
‎May-28-2017 09:22 PM
Never mind, I found that 10 "options" was the max and there were errors, I'm dumping the entire silly button thing and went to a WordPress shopping cart and it will work much easier. ... View more

Button coding for web site

by urba Contributor in About Business
‎May-21-2017 02:24 PM
‎May-21-2017 02:24 PM
I am trying to come up with a better solution than having to hand edit every one of my 100+ buttons one by one using the cheezy PP editor which doesn't even allow opening a 2nd tab or anything while editing, every time I need to change prices or shipping cost I have those damnable 100 buttons to edit, there HAS to be an easier way when there's web sites and ebay pages  with thousands of items on them that people have to manage payment buttons on, I can't imagine someone hand editing 1,000 prices on 1,000 buttons one by one!   I thought, what if you use ONE PP code, and using the "options" drop-down, you have this ONE block of code on each web page maybe using php with an include so only one file is called up to the pages using the regular php tag in the HTML to do so?   Most of my web site sales involve people buying ONE item, very rarely do people buy multiples.   Let's look at this generated test code for 6 different items before I do a change to it: <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top"> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="hosted_button_id" value="A-TEST-NUMBER-HERE-NOW"> <table> <tr><td><input type="hidden" name="on0" value="model number">model number</td></tr><tr><td><select name="os0"> <option value="a">Item 1 $149.00 USD</option> <option value="b">Item 2 $249.00 USD</option> <option value="c">Item 3 $178.00 USD</option> <option value="d">Item 4 $99.00 USD</option> <option value="e">Item 5 $89.00 USD</option> <option value="f">Item 6 $26.00 USD</option> </select> </td></tr> <tr><td><input type="hidden" name="on1" value="Suggested finishes available (default is the LIMESTONE">Suggested finishes available (default is the LIMESTONE</td></tr><tr><td><select name="os1"> <option value= "Limestone ">Limestone</option> <option value="Dirty Nickel">Dirty Nickel </option> <option value="Bright silver">Bright silver </option> <option value="Dirty Bronze">Dirty Bronze </option> </select> </td></tr> </table> <input type="hidden" name="currency_code" value="USD"> <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form>   That's one way, the options selected would actually be the item wanted and it's corresponding price, and can be done with one file in php as mentioned, though with 100 items, lets say 4 php files each having 25 items "options" so clients doen't have to scroll down the menu so far. My items are custom made and take 2-3 weeks to ship, so there is ALWAYS dialogue via email over confirming the item and finish wanted.   The other way is this, just displaying ONE "option" for the specific item on each page,  this would require editing every page to change prices, but easier than the PP editor:   <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top"> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="hosted_button_id" value="A-TEST-NUMBER-HERE-NOW"> <table> <tr><td><input type="hidden" name="on0" value="model number">model number</td></tr><tr><td><select name="os0"> <option value="a">This Item $149.00 USD</option> </select> </td></tr> <tr><td><input type="hidden" name="on1" value="Suggested finishes available (default is the LIMESTONE">Suggested finishes available (default is the LIMESTONE</td></tr><tr><td><select name="os1"> <option value= "Limestone ">Limestone</option> <option value="Dirty Nickel">Dirty Nickel </option> <option value="Bright silver">Bright silver </option> <option value="Dirty Bronze">Dirty Bronze </option> </select> </td></tr> </table> <input type="hidden" name="currency_code" value="USD"> <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form>   So the question is: is there a limit on the number of "options" that can be added to this code, and will these two examples work?   ... View more

Bulk edit buttons

by urba Contributor in Adding and updating info
‎May-21-2017 01:36 PM
‎May-21-2017 01:36 PM
I cannot believe how in 2017 we are still stuck with this lousy button edit method! Just to change prices on your web site, prices, shipping or options you have to log into PayPal, the saved buttons link of course is so obscure and difficult to find I had to BOOKMARK it in my browser to even find it any more. Then you have to go to the index list of your buttons and individually one by one click on "edit" and of course you can't just open a new TAB to do this so you can work in 2 windows, no sir! you have to go to that button's link and then edit it, save it, recopy the whole code, paste in your html  document in another window open on your FTP, save that, close it, go back to your button code on Paypal, click on the "go back to my saved buttons" and then do the whole process over on the next button. So like I have about 100 of these buttons on my web sites and there is no way to simply just BULK edit as you can with a php include on a web site using one file, or something like that.  You can't even do something automated like raise all prices across the bunch 5% or 10%   It is a mind boggling lesson in frustration with this thing every freaking time I need to make any changes, which is ALWAYS at least once a year due to needing to raise prices or shipping amounts. I'm going to look for  abetter solution to this garbage! ... View more

Re: Saved buttons

by urba Contributor in About Settings (Archive)
‎Dec-26-2014 11:36 PM
‎Dec-26-2014 11:36 PM
Good luck finding them, the link is just GONE, I had it in my browser's history for  along time but once I cleared it now no saved buttons/ merchants services links come up and there's absolutely NOTHING on the account or login screen on this stupid new layout, so now that I need to edit two web sites and a price sheet and add more items to the saved buttons I can't find them ... View more

Re: Tired of having to opt out of Bill Me Later ev...

by urba Contributor in Bill Me Later (Archive)
‎May-20-2011 06:10 AM
‎May-20-2011 06:10 AM
The opt out thing is in the account control link somewhere, I found it and turned it off, I think it was in my profile/my money/ and the bill me later link in there to "update", I forget exactly but bumping around in there checking each link in the my profile I found the way to change the default setting for payments where you set your preferences for credit cards and stuff.   ... View more

Re: Tired of having to opt out of Bill Me Later ev...

by urba Contributor in Bill Me Later (Archive)
‎May-17-2011 11:01 PM
1 Kudo
‎May-17-2011 11:01 PM
1 Kudo
"- the 5 seconds to load the marketing flyout asking me to change my payment plan means I missed out on buying about 750 dollars worth of merchandise last week. If this flyout continues to stay there, I will be forced to cancel my Paypal account because it's main use is these lightning sales."   Why dont you just use auction snipe and set the amount for the max that you are willing to pay for the stuff, 4 sec's lead time and dont worry about having to beat the clock- go to bed, have dinner, watch TV, whatever and let auction snipe deal with all that via proxy bids. That's how you win, not sitting there refreshing the page waiting till the last few sec's and hitting send! ... View more
Paypal Logo
  • Help
  • Contact Us
  • Security
  • Fees
  • © 1999-2025 PayPal, Inc. All rights reserved.
  • Privacy
  • Legal
  • Cookies
  • Policy Updates

The money in your balance is eligible for pass-through FDIC insurance.

The PayPal Cash Mastercard is issued by The Bancorp Bank pursuant to a license by Mastercard International Incorporated. The Bancorp Bank; Member FDIC.

Powered by Khoros