Quote:
Originally Posted by sarahnk
also, is there a reason why the number of items shown on the customer view is one less than the actual number on the inventory?
example:
on admin--
red shirt - qty=3
on customer--
red shirt - 2 available
|
Hi Sarahnk.
Please edit this line from
modules/Product_Options/check_options.tpl:
Line 124:
for(x = min_avail; x < avail; x++)
to:
for(x = min_avail; x <= avail; x++)