Re: Products Quantity Box Show vs Easy Populate
The products_quantity_order_max field in the products table is what would be used to set your max order qty to 1 (which automatically turns off the qty box).
I don't use EP, but I don't think it uses that field for uploads, so the database uses the default value, which is zero.
The easiest way to ensure that the value gets set to 1 is to change the default value of the field in the database.
You can do that either with phpmyadmin or by pasting the following sql query in Admin > Tools > Install SQL patches:
Code:
ALTER TABLE products CHANGE products_quantity_order_max products_quantity_order_max FLOAT NOT NULL DEFAULT '1';
To quickly update all your products that have max qty of 0 to be max qty 1, run this query from the install SQL patches tool:
Code:
UPDATE `products` SET `products_quantity_order_max` = 1 WHERE `products_quantity_order_max` = 0
Neville
An assumption is what you arrive at when you get tired of thinking...