having problems with a paypal dropdown menu. The picture should explain everything. http://tinypic.com/view.php?pic=z8z1t&s=7
Here is the code.
[Code moderated as per the Forum Rules. Please use the pastebin]
having problems with a paypal dropdown menu. The picture should explain everything. http://tinypic.com/view.php?pic=z8z1t&s=7
Here is the code.
[Code moderated as per the Forum Rules. Please use the pastebin]
Did you find a solution to your issue? I'm having the same problem.
I'm having exactly the same problem.
I hope it can be resolved
Any resolution to this PayPal and WordPress glitch?
I too am having the same problem. The dropdown does work when you use the Add drop-down menu.
This problem is ONLY with the Add drop-down menu with price/option.
Please update this thread if anyone has a solution.
Just ran into the same problem. I contacted PP and they said it was a WP problem.
I was given this link by the PP tech support. But I'm almost a total newbie so I can't make heads or tails out of it.
If anyone comes up with a simple solution, please post it here.
Please stop posting in existing topics.
Hi esmi.
Not sure why you don't want me posting in existing topics. Doesn't this forum work like others?
I don't know what other forums you have used but here we actually do want people to start new topics.
So even if I'm posting a comment or question on the same topic I should start a new one?
Yes - unless your comment is intended to help the original poster beyond a "Yes - me too".
So NealFox. Did you figure out the issue? If you have more than one item that has drop down menus on the same page, does that mean you will never be able to go back to view mode? (as opposed to html view?
This is all very well for those of us who can get by in html, but what about when you have clients that want to add more items? There must be a workaround.
[Personal comments about forum moderation removed] I think that NealFox thought that he was offering a solution but he just didn't understand what it meant.
Are there any plugins that you can add to allow the html not to get wiped out if you go back to visual again?
Solution:
All <option> values must be grouped within a single <select> tag. for instance:
<select name="os0"> <option value="a.Instant/Email">a.Instant/Email $160.99 </option> </select> <select name="os0"> <option value="b.2-Day Rush">b.2-Day Rush $161.00 </option> </select> <select name="os0"> <option value="c.3-Overnight/Next Day">c.3-Overnight/Next Day $175.00 </option> </select>
should actually be just:
<select name="os0"> <option value="a.Instant/Email">a.Instant/Email $160.99 </option> <option value="b.2-Day Rush">b.2-Day Rush $161.00 </option> <option value="c.3-Overnight/Next Day">c.3-Overnight/Next Day $175.00 </option> </select>
find each extraneous </select> <select name="os0"> pair and delete them.
This is a word press problem that manifests itself when you switch between VISUAL and HTML mode in the Edit Page EDITOR.
Ciao
You must log in to post.