+2 votes
1.3k views
in Magento by
Hi Folks,

How is this possible to Get Configurable product's Children set (simple products) custom attributes?

There should be a way for this already. Can anyone help me?

1 Answer

0 votes
by
<?php
$conf = Mage::getModel('catalog/product_type_configurable')->setProduct($product);

$col = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();

foreach($col as $simple_product)
{
    var_dump($simple_product->getId());
}
// Note: input is $product and result is iterating child products
 ?>

Related questions

+1 vote
1 answer 984 views
0 votes
0 answers 1.1k views
+1 vote
1 answer 1.5k views
+2 votes
1 answer 884 views
asked Jun 13, 2016 in Magento by Arton
+1 vote
1 answer 1.7k views
0 votes
2 answers 1.5k views
...