al404 Posted October 1, 2013 Share Posted October 1, 2013 is it possible to change default product quantity? it starts with 0 but i would like to start with 500 Link to comment Share on other sites More sharing options...
vekia Posted October 1, 2013 Share Posted October 1, 2013 you mean product quantity when you're creating product? or what? Link to comment Share on other sites More sharing options...
al404 Posted October 1, 2013 Author Share Posted October 1, 2013 yes procut quantity when i add a new product from backend Link to comment Share on other sites More sharing options...
vekia Posted October 1, 2013 Share Posted October 1, 2013 open classes/Product.php you've got there: /** @var integer Quantity available */ public $quantity = 0; just change 0 to any other value you want, for example 500 /** @var integer Quantity available */ public $quantity = 500; Link to comment Share on other sites More sharing options...
George.Gall Posted October 26, 2014 Share Posted October 26, 2014 open classes/Product.php you've got there: /** @var integer Quantity available */ public $quantity = 0; just change 0 to any other value you want, for example 500 /** @var integer Quantity available */ public $quantity = 500; tried to set this to 1 with no luck. any ideeas why is not working ? Link to comment Share on other sites More sharing options...
Recommended Posts