Hi,
I'd like to set the default quantity on my site to 0. I've read Changing the Default Quantity on the Product Page from the advanced user guide and tried the following: -
It's displayed fine on the page showing the product but if I enter 1 and add it to the cart I get an error message: -
Quantity: The quantity must be a whole number between 1 and 32767.
If however I use the following code: -
Give the product a 'Quantity' value of 0 and then view the product, change the quantity to 1 and add to cart it's fine.
Does this mean that for every product I have to set the default quantity, or is there a way to globaly set it to 0?
Thanks & Regards,
Andrew
I'd like to set the default quantity on my site to 0. I've read Changing the Default Quantity on the Product Page from the advanced user guide and tried the following: -
Code:
<input type="text" size="3" name="Q_NETQUOTEVAR:PRODUCTREFERENCE" value="0">
Quantity: The quantity must be a whole number between 1 and 32767.
If however I use the following code: -
Code:
<input type="text" size="3" name="Q_NETQUOTEVAR:PRODUCTREFERENCE" value="CUSTOMVAR:QUANTITY">
Does this mean that for every product I have to set the default quantity, or is there a way to globaly set it to 0?
Thanks & Regards,
Andrew
Comment