I searched around for a while and only came up wit solutions that added whole new option sets to products in a Magento store.
What I\'m trying to accomplish is a wa
You should write the input parameter for addproduct as the following format, it is tested by myself:
addproduct
$params = array( 'product' => 1, // This would be $product->getId() 'qty' => 1, 'super_attribute' => array( 34 => "value", 35 => "other value", 53 => "some other value" ) );