I have a multi store in magento and I am trying to add custom options to a lot of products programmatically.
My code is
Mage::app()->setCurrentStore($store_id);
foreach($result as $id) {
removeOptions('type', $id);
$optionArray = array(
"is_delete" => 0,
"title" => "Type",
"previous_group" => "",
"type" => "drop_down",
"is_require" => 1,
"sort_order" => 10,
"values" => array(
array(
"is_delete" => 0,
"title" => $option_1_name,
"price" => $option_1_price,
"price_type" => "fixed",
"sort_order" => 0
),
array(
"is_delete" => 0,
"title" => $option_2_name,
"price" => $option_2_price,
"price_type" => "fixed",
"sort_order" => 5
)
),
);
try {
Mage::app()->setCurrentStore($store_id);
$product = Mage::getModel('catalog/product')->load($id);
$product->setHasOptions(true);
$product->save();
$opt = Mage::getModel('catalog/product_option');
$opt->setProduct($product);
$opt->addOption($optionArray);
$opt->saveOptions();
} catch (Exception $e) {
echo $e->getMessage();
die();
}
}
Now my issue is when run , the options are added however they are been added to all stores and not the store set by Mage::app()->setCurrentStore($store_id);
What am I missing?