Hi,
I'm using 2.0.16.
I'd like to know if it's possible to remove the quantity box along with the + / - buttons on the product pages and really anywhere else, including the cart.
Would anyone know how this can be done?
thanks.
You can use Firebug to look at objects on the page to determine their related css - and edit that. http://forum.virtuemart.net/index.php?topic=102850.0
From memory you need to add something like this to the end of your Joomla template css:
.quantity-box {
display:none;
}
.quantity-controls {
display:none;
}