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;








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();









share|improve this question






























    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();









    share|improve this question


























      0












      0








      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();









      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      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























          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
          );



          );













          draft saved

          draft discarded


















          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















          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%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





















































          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

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form