Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.