How To

How to Get Associated Product Information from Grouped Product SKU in Magento 2

Hello Magento Friends,

Today I am going to explain How to Get Associated Product Information from Grouped Product SKU in Magento 2.

Grouped products are a set of simple products combined together in order to increase purchase value. You can Create Grouped Product Programmatically in Magento 2.

When you need the information of the associated product of a particular grouped product you can apply the below steps. With the help of the below code, you can get information like Product ID, name, price, etc.

Steps to Get Associated Product Information from Grouped Product SKU in Magento 2:

Step 1: Go to the below file path

app\code\Vendor\Extension\Controller\Index\Groupproductset.php

Now, add the below code

namespace Vendor\Extension\Controller\Index;

use Magento\Catalog\Model\Product;
use Magento\Framework\App\Action\Action;
use Magento\Framework\App\Action\Context;

class Groupproductset extends Action
{
    protected $_productCollection;

    public function __construct(
    Product $_productCollection,
    Context $context)
    {
        $this->_productCollection = $_productCollection;
        parent::__construct($context);
    }

     public function execute()
    {
 $group_product_sku = “group_product_sku”;
 $productId = $this->_productCollection->getIdBySku($group_product_sku);
 $groupProduct = $this->_productCollection->load($productId);
 $groupProduct_name = $groupProduct->getName();

 $_children = $groupProduct->getTypeInstance(true) ->getAssociatedProducts($groupProduct);

 $simpleproduct = array();

 foreach ($_children as $child)
        {
             if ($child->getId() != $groupProduct->getId())
                {
              echo $child->getSKU();
              echo $child->getPrice();
              echo $child->getName();
             }
        }
    }
}

Step 2: After adding the above file run the below commands

sudo php bin/magento setup:di:compile
sudo php bin/magento cache:flush

Conclusion:

This way you can get the associated product from the grouped product ID in Magento 2. If you face any trouble, feel free to share it with me via the comment part. Share the article and stay in touch with us.

Happy Coding!

Click to rate this post!
[Total: 4 Average: 4]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate 🎖️ Certified Magento Developer👨‍💻. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.🏏

Recent Posts

How to Integrate ChatGPT with Laravel Application?

In this guide, we'll explore how to integrate ChatGPT, an AI-powered chatbot, with a Laravel…

2 days ago

What are Net Sales? How to Calculate Your Net Sales?

In the world of business, understanding financial metrics is crucial for making informed decisions and…

4 days ago

Magento 2 Extensions Digest April 2024 (New Release & Updates)

Welcome to the MageComp Monthly Digest, where we bring you the latest updates, releases, and…

4 days ago

The ABCs of Geofencing: Definition, Features and Uses

In this era, businesses are always on the lookout for ways to engage with their…

5 days ago

How to Delete Product Variant in a Shopify Remix App using GraphQL Mutations?

Managing a Shopify store efficiently involves keeping your product catalog organized. This includes removing outdated…

6 days ago

6 Innovative Tools Revolutionizing E-Commerce Operations

E-commerce has transformed the way consumers shop for products and services and interact with businesses.…

1 week ago