Adding custom options to all products of a certain type on save
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
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
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.
add a comment |
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
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
add a comment |
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
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
magento-1 custom-options
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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
$product->save()
calls itself as I am currently working insidesave()
. This would just cause recursion.
– pspahn
May 28 '15 at 18:18
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
$product->save()
calls itself as I am currently working insidesave()
. This would just cause recursion.
– pspahn
May 28 '15 at 18:18
add a comment |
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
$product->save()
calls itself as I am currently working insidesave()
. This would just cause recursion.
– pspahn
May 28 '15 at 18:18
add a comment |
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
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
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 insidesave()
. This would just cause recursion.
– pspahn
May 28 '15 at 18:18
add a comment |
$product->save()
calls itself as I am currently working insidesave()
. 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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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