Magento 1.x : How can I get the Parent product name in 1 go from child product object?How to show only one record in order grid for the same Order ID for parent configurable product and child simple product?Exclude a specific categoryHow to get stock quantity of child product from configurable product in Magento 1.9Get Configurable Parent from simple product in quote when simple product has multiple parentsGet no order from product name or product descriptionGet product Category from Parent Product using SQL queryI want to add parent product to cart using child product id, it's configurable options in magento 2.1How to get configurable child product by attributeHow to get child simple Product Obj from configurable Sales Order ItemsLayout - Pass variables from parent to child
To what extent should we fear giving offense?
Is the Amazon rainforest the "world's lungs"?
Should an STL container avoid copying elements into themselves when the container is copied into itself?
How do I insert two edge loops equally spaced from the edges?
How to respond to Brand identity Objections from small business owners?
Is there a word or phrase that means "use other people's wifi or Internet service without consent"?
How to determine algebraically whether an equation has an infinite solutions or not?
Why did Lucius make a deal out of Buckbeak hurting Draco but not about Draco being turned into a ferret?
Why was this commercial plane highly delayed mid-flight?
Counting the triangles that can be formed from segments of given lengths
Why does a sticker slowly peel off, but if it is pulled quickly it tears?
Why does Windows store Wi-Fi passwords in a reversible format?
Etymology of "Talo" (Finnish for "house"). Can it be a cognate of Thalamus?
Using a JoeBlow Sport pump on a presta valve
Is there any problem with a full installation on a USB drive?
Pen test results for web application include a file from a forbidden directory that is not even used or referenced
Units in general relativity
Is the internet in Madagascar faster than in UK?
Do sharpies or markers damage soft rock climbing gear?
Alternatives to Network Backup
What are the IPSE’s, the ASPE’s, the FRIPSE’s and the GRIPSE’s?
Is a Centaur PC considered an animal when calculating carrying capacity for vehicles?
Book featuring a child learning from a crowdsourced AI book
Will removing shelving screws from studs damage the studs?
Magento 1.x : How can I get the Parent product name in 1 go from child product object?
How to show only one record in order grid for the same Order ID for parent configurable product and child simple product?Exclude a specific categoryHow to get stock quantity of child product from configurable product in Magento 1.9Get Configurable Parent from simple product in quote when simple product has multiple parentsGet no order from product name or product descriptionGet product Category from Parent Product using SQL queryI want to add parent product to cart using child product id, it's configurable options in magento 2.1How to get configurable child product by attributeHow to get child simple Product Obj from configurable Sales Order ItemsLayout - Pass variables from parent to child
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Magento 1.x : How can I get the Parent product name in 1 go from child product object?
I have the child product in object. I would like to know what the fastest and less load time is to achoieve the following.
- check if parent exists (or product is simple)
- if parent found then get name from parent object
- if not then take name from current object
I am playing with this code but it is using LOAD that we dont want
if($product->getTypeId() == "simple")
$parentIds = Mage::getModel('catalog/product_type_grouped')->getParentIdsByChild($product->getId());
if(!$parentIds)
$parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
if(isset($parentIds[0]))
$parent = Mage::getModel('catalog/product')->load($parentIds[0]);
else
$parent = $product;
else
$parent = $product;
$name = $parent->getName() . " // " . $product->getName();
magento-1.9 product configurable-product
add a comment |
Magento 1.x : How can I get the Parent product name in 1 go from child product object?
I have the child product in object. I would like to know what the fastest and less load time is to achoieve the following.
- check if parent exists (or product is simple)
- if parent found then get name from parent object
- if not then take name from current object
I am playing with this code but it is using LOAD that we dont want
if($product->getTypeId() == "simple")
$parentIds = Mage::getModel('catalog/product_type_grouped')->getParentIdsByChild($product->getId());
if(!$parentIds)
$parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
if(isset($parentIds[0]))
$parent = Mage::getModel('catalog/product')->load($parentIds[0]);
else
$parent = $product;
else
$parent = $product;
$name = $parent->getName() . " // " . $product->getName();
magento-1.9 product configurable-product
add a comment |
Magento 1.x : How can I get the Parent product name in 1 go from child product object?
I have the child product in object. I would like to know what the fastest and less load time is to achoieve the following.
- check if parent exists (or product is simple)
- if parent found then get name from parent object
- if not then take name from current object
I am playing with this code but it is using LOAD that we dont want
if($product->getTypeId() == "simple")
$parentIds = Mage::getModel('catalog/product_type_grouped')->getParentIdsByChild($product->getId());
if(!$parentIds)
$parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
if(isset($parentIds[0]))
$parent = Mage::getModel('catalog/product')->load($parentIds[0]);
else
$parent = $product;
else
$parent = $product;
$name = $parent->getName() . " // " . $product->getName();
magento-1.9 product configurable-product
Magento 1.x : How can I get the Parent product name in 1 go from child product object?
I have the child product in object. I would like to know what the fastest and less load time is to achoieve the following.
- check if parent exists (or product is simple)
- if parent found then get name from parent object
- if not then take name from current object
I am playing with this code but it is using LOAD that we dont want
if($product->getTypeId() == "simple")
$parentIds = Mage::getModel('catalog/product_type_grouped')->getParentIdsByChild($product->getId());
if(!$parentIds)
$parentIds = Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId());
if(isset($parentIds[0]))
$parent = Mage::getModel('catalog/product')->load($parentIds[0]);
else
$parent = $product;
else
$parent = $product;
$name = $parent->getName() . " // " . $product->getName();
magento-1.9 product configurable-product
magento-1.9 product configurable-product
asked Aug 15 at 9:53
snh_nlsnh_nl
3,08810 gold badges48 silver badges107 bronze badges
3,08810 gold badges48 silver badges107 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
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%2f285555%2fmagento-1-x-how-can-i-get-the-parent-product-name-in-1-go-from-child-product-o%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f285555%2fmagento-1-x-how-can-i-get-the-parent-product-name-in-1-go-from-child-product-o%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