Jump to content

default product quantity


Recommended Posts

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

  • 1 year later...

 

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

×
×
  • Create New...