View Single Post
  #58  
Old 07-27-2004, 10:16 PM
 
Alan Alan is offline
 

Advanced Member
  
Join Date: Feb 2003
Posts: 83
 

Default

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++)
__________________
Best Regards!
Alan
Search is my friend
Reply With Quote