
01-10-2012, 12:40 PM
|
 |
Ecwid Team
|
|
Join Date: Oct 2011
Posts: 4,947
|
|
Quote:
Originally Posted by The Inflatable Gorilla
Makfruit,
Thanks for yous responce. I was able to correct the doubling problem. I had put price amounts in and then also used the drop down menu so when someone ordered it doubled the price. I put the prices back to 0 and just used the drop down menu and now works fine. however, I need to delete the prices of 0 like you said. I don't know how to code it so that doesn't show up?? I was able to delete the ones in the main shopping cart but not in the box on the right hand side when you click on the product.
I totally understand what you suggest of not using the option/drop down if there is only one size or option, however the site owner wants it that way so they all look the same.
|
If you want to hide the product price on the product details page, add the following code to your custom css theme:
Code:
div.ecwid-productBrowser-details div.ecwid-productBrowser-price {
display:none;
}
|