Adding custom options to all products of a certain type on save Planned maintenance scheduled...

Disable hyphenation for an entire paragraph

Single word antonym of "flightless"

Is 1 ppb equal to 1 μg/kg?

How to deal with a team lead who never gives me credit?

How can I fade player when goes inside or outside of the area?

ListPlot join points by nearest neighbor rather than order

How much radiation do nuclear physics experiments expose researchers to nowadays?

Stars Make Stars

Bonus calculation: Am I making a mountain out of a molehill?

Diagram with tikz

If 'B is more likely given A', then 'A is more likely given B'

How do I stop a creek from eroding my steep embankment?

Did Kevin spill real chili?

Why is black pepper both grey and black?

Did Xerox really develop the first LAN?

How to do this path/lattice with tikz

Models of set theory where not every set can be linearly ordered

Why is "Consequences inflicted." not a sentence?

do i need a schengen visa for a direct flight to amsterdam?

Is above average number of years spent on PhD considered a red flag in future academia or industry positions?

If a contract sometimes uses the wrong name, is it still valid?

What would be the ideal power source for a cybernetic eye?

Do you forfeit tax refunds/credits if you aren't required to and don't file by April 15?

How do I keep my slimes from escaping their pens?



Adding custom options to all products of a certain type on save



Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?file option not working in custom options for product import from csvObserver failing to save custom optionsAdd product to cart programmatically with file type custom optionsadding products with custom options to order in adminMagento2: Adding the same custom attribute to all products of a certain Type?how many custom options a product can haveAdd new drop-down custom option typeHow do I check If custom options exists for product?How to edit the custom option price type programmatically?Magento 2 - How to show amount "save $100 considering custom options also on detail page?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







2















I have created some custom product types that extend from simple products. These product types will all have the same custom options added, so I'd like to just set those options on the product when saved as well as removing any other options that might have been added accidentally.



In my product type model, I have added the following save() method:



//My_Module_Model_Product_Type_Customtype extends Mage_Catalog_Model_Product_Type_Simple

public function save($product = null)
{
$option = array(
'title' => 'My Options',
'type' => 'field',
'is_require' => 0,
'price' => 5,
'price_type' => 'fixed',
'sku' => 'mysku'
);

$product->setCanSaveCustomOptions(true);
$optionInstance = $product->getOptionInstance();
$optionInstance->unsetOptions();
$optionInstance->addOption($option);
$product->setHasOptions(1);
$optionInstance->setProduct($product);

return $this;
}


When I load an existing product of my type that does not have custom options assigned, the option I am adding inside save() can not be seen after the product saves; however, if I add a custom option from the admin form and then save, my option added in save() does get added. It seems the option will only get saved if the product already has a custom option assigned through the admin



I am guessing I am missing something basic, but can't seem to find what it is.





EDIT



I took a look at the catalog_product_option table, and the option I add in save() is listed here, but it doesn't appear on the product's custom options tab unless I add an additional option manually from admin.





EDIT 2



It seems that $product->setHasOptions() isn't working. When I look at catalog_product_entity, that value is 0. Manually changing it to 1 resolves the issue.



How am I supposed to save custom product type data while in the save() method?










share|improve this question
















bumped to the homepage by Community 1 min ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • This is a common problem. A way around is to wrap your rourine in a registry flag. So action if flag is not set. Set flag when actioned. This will block the recursion.

    – ProxiBlue
    Sep 18 '16 at 0:19


















2















I have created some custom product types that extend from simple products. These product types will all have the same custom options added, so I'd like to just set those options on the product when saved as well as removing any other options that might have been added accidentally.



In my product type model, I have added the following save() method:



//My_Module_Model_Product_Type_Customtype extends Mage_Catalog_Model_Product_Type_Simple

public function save($product = null)
{
$option = array(
'title' => 'My Options',
'type' => 'field',
'is_require' => 0,
'price' => 5,
'price_type' => 'fixed',
'sku' => 'mysku'
);

$product->setCanSaveCustomOptions(true);
$optionInstance = $product->getOptionInstance();
$optionInstance->unsetOptions();
$optionInstance->addOption($option);
$product->setHasOptions(1);
$optionInstance->setProduct($product);

return $this;
}


When I load an existing product of my type that does not have custom options assigned, the option I am adding inside save() can not be seen after the product saves; however, if I add a custom option from the admin form and then save, my option added in save() does get added. It seems the option will only get saved if the product already has a custom option assigned through the admin



I am guessing I am missing something basic, but can't seem to find what it is.





EDIT



I took a look at the catalog_product_option table, and the option I add in save() is listed here, but it doesn't appear on the product's custom options tab unless I add an additional option manually from admin.





EDIT 2



It seems that $product->setHasOptions() isn't working. When I look at catalog_product_entity, that value is 0. Manually changing it to 1 resolves the issue.



How am I supposed to save custom product type data while in the save() method?










share|improve this question
















bumped to the homepage by Community 1 min ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
















  • This is a common problem. A way around is to wrap your rourine in a registry flag. So action if flag is not set. Set flag when actioned. This will block the recursion.

    – ProxiBlue
    Sep 18 '16 at 0:19














2












2








2








I have created some custom product types that extend from simple products. These product types will all have the same custom options added, so I'd like to just set those options on the product when saved as well as removing any other options that might have been added accidentally.



In my product type model, I have added the following save() method:



//My_Module_Model_Product_Type_Customtype extends Mage_Catalog_Model_Product_Type_Simple

public function save($product = null)
{
$option = array(
'title' => 'My Options',
'type' => 'field',
'is_require' => 0,
'price' => 5,
'price_type' => 'fixed',
'sku' => 'mysku'
);

$product->setCanSaveCustomOptions(true);
$optionInstance = $product->getOptionInstance();
$optionInstance->unsetOptions();
$optionInstance->addOption($option);
$product->setHasOptions(1);
$optionInstance->setProduct($product);

return $this;
}


When I load an existing product of my type that does not have custom options assigned, the option I am adding inside save() can not be seen after the product saves; however, if I add a custom option from the admin form and then save, my option added in save() does get added. It seems the option will only get saved if the product already has a custom option assigned through the admin



I am guessing I am missing something basic, but can't seem to find what it is.





EDIT



I took a look at the catalog_product_option table, and the option I add in save() is listed here, but it doesn't appear on the product's custom options tab unless I add an additional option manually from admin.





EDIT 2



It seems that $product->setHasOptions() isn't working. When I look at catalog_product_entity, that value is 0. Manually changing it to 1 resolves the issue.



How am I supposed to save custom product type data while in the save() method?










share|improve this question
















I have created some custom product types that extend from simple products. These product types will all have the same custom options added, so I'd like to just set those options on the product when saved as well as removing any other options that might have been added accidentally.



In my product type model, I have added the following save() method:



//My_Module_Model_Product_Type_Customtype extends Mage_Catalog_Model_Product_Type_Simple

public function save($product = null)
{
$option = array(
'title' => 'My Options',
'type' => 'field',
'is_require' => 0,
'price' => 5,
'price_type' => 'fixed',
'sku' => 'mysku'
);

$product->setCanSaveCustomOptions(true);
$optionInstance = $product->getOptionInstance();
$optionInstance->unsetOptions();
$optionInstance->addOption($option);
$product->setHasOptions(1);
$optionInstance->setProduct($product);

return $this;
}


When I load an existing product of my type that does not have custom options assigned, the option I am adding inside save() can not be seen after the product saves; however, if I add a custom option from the admin form and then save, my option added in save() does get added. It seems the option will only get saved if the product already has a custom option assigned through the admin



I am guessing I am missing something basic, but can't seem to find what it is.





EDIT



I took a look at the catalog_product_option table, and the option I add in save() is listed here, but it doesn't appear on the product's custom options tab unless I add an additional option manually from admin.





EDIT 2



It seems that $product->setHasOptions() isn't working. When I look at catalog_product_entity, that value is 0. Manually changing it to 1 resolves the issue.



How am I supposed to save custom product type data while in the save() method?







magento-1 custom-options






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Aug 17 '16 at 21:00









Siarhey Uchukhlebau

10.1k93058




10.1k93058










asked May 28 '15 at 17:52









pspahnpspahn

3,70822457




3,70822457





bumped to the homepage by Community 1 min ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 1 min ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • This is a common problem. A way around is to wrap your rourine in a registry flag. So action if flag is not set. Set flag when actioned. This will block the recursion.

    – ProxiBlue
    Sep 18 '16 at 0:19



















  • This is a common problem. A way around is to wrap your rourine in a registry flag. So action if flag is not set. Set flag when actioned. This will block the recursion.

    – ProxiBlue
    Sep 18 '16 at 0:19

















This is a common problem. A way around is to wrap your rourine in a registry flag. So action if flag is not set. Set flag when actioned. This will block the recursion.

– ProxiBlue
Sep 18 '16 at 0:19





This is a common problem. A way around is to wrap your rourine in a registry flag. So action if flag is not set. Set flag when actioned. This will block the recursion.

– ProxiBlue
Sep 18 '16 at 0:19










1 Answer
1






active

oldest

votes


















0














I was working on something similar today - I would try to get all current options, push your new option(s) onto that array and do this:



Mage::getSingleton('catalog/product_option')->unsetOptions();
$product->setProductOptions($options);
$product->setCanSaveCustomOptions(true)
->setHasOptions(true);
$product->save();


The first line is explained here (not sure if you'd need it actually): https://stackoverflow.com/questions/4006260/magento-accumulating-custom-options-in-script



Edit: By the way, this code is working perfectly for me, however I'm using it in a script in development






share|improve this answer


























  • $product->save() calls itself as I am currently working inside save(). This would just cause recursion.

    – pspahn
    May 28 '15 at 18:18












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f69359%2fadding-custom-options-to-all-products-of-a-certain-type-on-save%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














I was working on something similar today - I would try to get all current options, push your new option(s) onto that array and do this:



Mage::getSingleton('catalog/product_option')->unsetOptions();
$product->setProductOptions($options);
$product->setCanSaveCustomOptions(true)
->setHasOptions(true);
$product->save();


The first line is explained here (not sure if you'd need it actually): https://stackoverflow.com/questions/4006260/magento-accumulating-custom-options-in-script



Edit: By the way, this code is working perfectly for me, however I'm using it in a script in development






share|improve this answer


























  • $product->save() calls itself as I am currently working inside save(). This would just cause recursion.

    – pspahn
    May 28 '15 at 18:18
















0














I was working on something similar today - I would try to get all current options, push your new option(s) onto that array and do this:



Mage::getSingleton('catalog/product_option')->unsetOptions();
$product->setProductOptions($options);
$product->setCanSaveCustomOptions(true)
->setHasOptions(true);
$product->save();


The first line is explained here (not sure if you'd need it actually): https://stackoverflow.com/questions/4006260/magento-accumulating-custom-options-in-script



Edit: By the way, this code is working perfectly for me, however I'm using it in a script in development






share|improve this answer


























  • $product->save() calls itself as I am currently working inside save(). This would just cause recursion.

    – pspahn
    May 28 '15 at 18:18














0












0








0







I was working on something similar today - I would try to get all current options, push your new option(s) onto that array and do this:



Mage::getSingleton('catalog/product_option')->unsetOptions();
$product->setProductOptions($options);
$product->setCanSaveCustomOptions(true)
->setHasOptions(true);
$product->save();


The first line is explained here (not sure if you'd need it actually): https://stackoverflow.com/questions/4006260/magento-accumulating-custom-options-in-script



Edit: By the way, this code is working perfectly for me, however I'm using it in a script in development






share|improve this answer















I was working on something similar today - I would try to get all current options, push your new option(s) onto that array and do this:



Mage::getSingleton('catalog/product_option')->unsetOptions();
$product->setProductOptions($options);
$product->setCanSaveCustomOptions(true)
->setHasOptions(true);
$product->save();


The first line is explained here (not sure if you'd need it actually): https://stackoverflow.com/questions/4006260/magento-accumulating-custom-options-in-script



Edit: By the way, this code is working perfectly for me, however I'm using it in a script in development







share|improve this answer














share|improve this answer



share|improve this answer








edited May 23 '17 at 12:37









Community

1




1










answered May 28 '15 at 18:12









brianwalleshauserbrianwalleshauser

3101211




3101211













  • $product->save() calls itself as I am currently working inside save(). This would just cause recursion.

    – pspahn
    May 28 '15 at 18:18



















  • $product->save() calls itself as I am currently working inside save(). This would just cause recursion.

    – pspahn
    May 28 '15 at 18:18

















$product->save() calls itself as I am currently working inside save(). This would just cause recursion.

– pspahn
May 28 '15 at 18:18





$product->save() calls itself as I am currently working inside save(). This would just cause recursion.

– pspahn
May 28 '15 at 18:18


















draft saved

draft discarded




















































Thanks for contributing an answer to Magento Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f69359%2fadding-custom-options-to-all-products-of-a-certain-type-on-save%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

“%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

夢乃愛華...