-
Option upchanges have been removed. Any price variations should be set using variations. The
value
property and corresponding methods have been changed toindex
Before:
public function setValue($value); public function getValue();
After:
public function setIndex($index); public function getIndex();
-
The
name
property and corredsponding methods have been changed totype
to OptionBefore:
public function setName($name); public function getName();
After:
public function setType($type); public function getType();