ryanmitchell
Hi,
To fix out of stock when quantity comes to equal or less than 0
i amend the method outOfStock() at
extensions/igniter/cart/models/Menus_model.php
public function outOfStock()
{
return $this->stock_qty < 0;
}
to this
public function outOfStock()
{
return $this->stock_qty <= 0;
}
This is now working fine.
but have to make working cart quantity should less than minimum quantity when adding items to cart.
any clue!?