Hello Magento Friends,
I am again back with another useful Magento solution for you all. Today it’s about Getting Child Items of Bundle Products in Magento 2.
Bundled products are a group of simple or virtual products that are bought together. You can Create Bundled Products Programmatically in Magneto 2. Bundled products are a combination of various child products. To get all the child items of bundled products, you can follow the below steps.
Steps to Get Child Items of Bundle Products in Magento 2:
Step 1: Create a file at the below path
app\code\Vendor\Extension\Model\Bundlechildproduct.php
And add the below code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
<?php namespace Vendor\Extension\Model; use Exception; use Psr\Log\LoggerInterface; use Magento\Bundle\Api\ProductLinkManagementInterface; class Bundlechildproduct { private $logger; private $productLinkManagement; public function __construct( LoggerInterface $logger, ProductLinkManagementInterface $productLinkManagement) { $this->logger = $logger; $this->productLinkManagement = $productLinkManagement; } public function getBundleChildrenItems() { $sku = 'YOUR_PRODUCT_SKU'; try { $items = $this->productLinkManagement->getChildren($sku); } catch (Exception $exception) { throw new Exception($exception->getMessage()); } return $items; } } |
Step 2: Call from the template or Any PHP class
1 2 3 4 5 |
$items = $this->getBundleChildrenItems(); foreach ($items as $item) { var_dump($item->getData()); } |
Conclusion:
This way you can fetch child items from the bundled products in Magento 2. In case you come across any error, reach me via the comment box. Share the article with your friends and stay updated!
Happy Coding!
hello this post does not show me anything.
I want to see if a bundle product that contains 3 simple products, if one is out of stock that shows that the bundle product is out of stock
Make sure you have created other required files for the extension and the extension is installed and enabled.