How can get configurable product with associated products?Adding one associated product to multiple configurable products at onceApply configurable product categories to associated products?How to display status of associated product in configurable productsCreate invoice and shipment in magento via cron based on store view and order ageMagento CE 1.9.1 Configurable Products do not get their simple products 'associated'Multiple Taxes for different simple products associated with a single configurable productHow to redirect a associated product to its configurable productAssociated products with red backgroundHow to change dynamic attributes when simple product is selectedExport Category name in xml feed Magento 1.9.2

Short story about space worker geeks who zone out by 'listening' to radiation from stars

Roman Numeral Treatment of Suspensions

Two monoidal structures and copowering

Sort a list by elements of another list

Why escape if the_content isnt?

How does buying out courses with grant money work?

Pole-zeros of a real-valued causal FIR system

Detecting if an element is found inside a container

Risk of infection at the gym?

What is the intuitive meaning of having a linear relationship between the logs of two variables?

How do we know the LHC results are robust?

Large drywall patch supports

I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?

Different result between scanning in Epson's "color negative film" mode and scanning in positive -> invert curve in post?

Go Pregnant or Go Home

How to pronounce the slash sign

Did Dumbledore lie to Harry about how long he had James Potter's invisibility cloak when he was examining it? If so, why?

Is there a korbon needed for conversion?

Is this apparent Class Action settlement a spam message?

What is paid subscription needed for in Mortal Kombat 11?

Is a stroke of luck acceptable after a series of unfavorable events?

Tiptoe or tiphoof? Adjusting words to better fit fantasy races

Would this custom Sorcerer variant that can only learn any verbal-component-only spell be unbalanced?

How do scammers retract money, while you can’t?



How can get configurable product with associated products?


Adding one associated product to multiple configurable products at onceApply configurable product categories to associated products?How to display status of associated product in configurable productsCreate invoice and shipment in magento via cron based on store view and order ageMagento CE 1.9.1 Configurable Products do not get their simple products 'associated'Multiple Taxes for different simple products associated with a single configurable productHow to redirect a associated product to its configurable productAssociated products with red backgroundHow to change dynamic attributes when simple product is selectedExport Category name in xml feed Magento 1.9.2













0















I want to get configurable product with associated my code is below when I try to get 2 0r 3 configuration product with associated not get configuration product related simple product properly suggest me how can possible?



<?php
error_reporting(0);
include("../app/Mage.php");
umask(0);
Mage::app();
$result_array = array();
$result_array_listproduct = array();
// $result_array_associated = array();
$product_collection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('*')
->load();
foreach ($product_collection as $product)
$ids[] = $product->getId();

// echo "<pre>";
// print_r($ids);
// exit();
for($i=0;$ids[$i];$i++)
$_product = Mage::getModel('catalog/product')->load($ids[$i]);
echo $product_visi=$_product->getVisibility();

if($_product->getTypeId() == "configurable")

$result_array_listproduct["product_id"]=$product_id=$_product->getId(); // product id
$result_array_listproduct["product_name"]=$product_name=$_product->getName(); //product name
$result_array_listproduct["product_image"]=$product_image=$_product->getImageUrl(); //product's image url
$result_array_listproduct["product_small_image"]=$product_small_image=$_product->getSmallImageUrl(); //product's small image url
$result_array_listproduct["product_thumbnail_image"]=$product_thumbnail_image=$_product->getThumbnailUrl(); //product's thumbnail image url
$result_array_listproduct["product_regular_price"]=$product_regular_price=$_product->getPrice(); //product's regular Price
$result_array_listproduct["product_special_price"]=$product_special_price=$_product->getSpecialPrice();
$result_array_listproduct["product_short_description"]=$product_short_description=$_product->getShortDescription(); //product's short description
$result_array_listproduct["product_long_description"]=$product_long_description=htmlentities($_product->getDescription()); // product's long description
$result_array_listproduct["product_qty"]=$product_qty=$_product->getStockItem()->getQty();// get product Qty
$result_array_listproduct["product_attribute"]=$product_attribute=$_product->getAttributeText('color'); // get product attribute color
$result_array_listproduct["product_type"]=$product_type=$_product->getTypeId();
$result_array_listproduct["product_visi"]=$product_visi=$_product->getVisibility();

//print_r($result_array_listproduct);

$conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product);
$simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();
foreach($simple_collection as $simple_product)
$result_array_listproduct["asociated"]["product_id"]= $simple_product->getId();
$result_array_listproduct["asociated"]["product_name"]=$simple_product->getName();
$result_array_listproduct["asociated"]["product_image"]=$simple_product->getImageUrl();
$result_array_listproduct["asociated"]["product_small_image"]=$simple_product->getSmallImageUrl();
$result_array_listproduct["asociated"]["product_thumbnail_image"]=$simple_product->getThumbnailUrl();
$result_array_listproduct["asociated"]["product_regular_price"]=$simple_product->getPrice();
$result_array_listproduct["asociated"]["product_special_price"]=$simple_product->getSpecialPrice();
$result_array_listproduct["asociated"]["sku"]=$simple_product->getSku();
$result_array_listproduct["asociated"]["product_short_description"]=$simple_product->getShortDescription();
$result_array_listproduct["asociated"]["product_long_description"]=htmlentities($simple_product->getDescription());
$result_array_listproduct["asociated"]["product_attribute"]=$simple_product->getStockItem()->getQty();
$result_array_listproduct["asociated"]["product_attribute"]=$simple_product->getAttributeText('color');
$result_array_listproduct["asociated"]["product_type"]=$simple_product->getTypeId();
$result_array_listproduct["asociated"]["visibility"]= $simple_product->getVisibility();
//echo "<pre>";
//print_r($result_array_listproduct["asociated"]);

array_push($result_array_listproduct,$result_array_listproduct["asociated"]);




array_push($result_array, $result_array_listproduct);


echo "<pre>";
print_r($result_array);
?>









share|improve this question














bumped to the homepage by Community 14 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Great work i have checked your given api :)

    – Vipin Kumar
    Aug 24 '18 at 11:01















0















I want to get configurable product with associated my code is below when I try to get 2 0r 3 configuration product with associated not get configuration product related simple product properly suggest me how can possible?



<?php
error_reporting(0);
include("../app/Mage.php");
umask(0);
Mage::app();
$result_array = array();
$result_array_listproduct = array();
// $result_array_associated = array();
$product_collection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('*')
->load();
foreach ($product_collection as $product)
$ids[] = $product->getId();

// echo "<pre>";
// print_r($ids);
// exit();
for($i=0;$ids[$i];$i++)
$_product = Mage::getModel('catalog/product')->load($ids[$i]);
echo $product_visi=$_product->getVisibility();

if($_product->getTypeId() == "configurable")

$result_array_listproduct["product_id"]=$product_id=$_product->getId(); // product id
$result_array_listproduct["product_name"]=$product_name=$_product->getName(); //product name
$result_array_listproduct["product_image"]=$product_image=$_product->getImageUrl(); //product's image url
$result_array_listproduct["product_small_image"]=$product_small_image=$_product->getSmallImageUrl(); //product's small image url
$result_array_listproduct["product_thumbnail_image"]=$product_thumbnail_image=$_product->getThumbnailUrl(); //product's thumbnail image url
$result_array_listproduct["product_regular_price"]=$product_regular_price=$_product->getPrice(); //product's regular Price
$result_array_listproduct["product_special_price"]=$product_special_price=$_product->getSpecialPrice();
$result_array_listproduct["product_short_description"]=$product_short_description=$_product->getShortDescription(); //product's short description
$result_array_listproduct["product_long_description"]=$product_long_description=htmlentities($_product->getDescription()); // product's long description
$result_array_listproduct["product_qty"]=$product_qty=$_product->getStockItem()->getQty();// get product Qty
$result_array_listproduct["product_attribute"]=$product_attribute=$_product->getAttributeText('color'); // get product attribute color
$result_array_listproduct["product_type"]=$product_type=$_product->getTypeId();
$result_array_listproduct["product_visi"]=$product_visi=$_product->getVisibility();

//print_r($result_array_listproduct);

$conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product);
$simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();
foreach($simple_collection as $simple_product)
$result_array_listproduct["asociated"]["product_id"]= $simple_product->getId();
$result_array_listproduct["asociated"]["product_name"]=$simple_product->getName();
$result_array_listproduct["asociated"]["product_image"]=$simple_product->getImageUrl();
$result_array_listproduct["asociated"]["product_small_image"]=$simple_product->getSmallImageUrl();
$result_array_listproduct["asociated"]["product_thumbnail_image"]=$simple_product->getThumbnailUrl();
$result_array_listproduct["asociated"]["product_regular_price"]=$simple_product->getPrice();
$result_array_listproduct["asociated"]["product_special_price"]=$simple_product->getSpecialPrice();
$result_array_listproduct["asociated"]["sku"]=$simple_product->getSku();
$result_array_listproduct["asociated"]["product_short_description"]=$simple_product->getShortDescription();
$result_array_listproduct["asociated"]["product_long_description"]=htmlentities($simple_product->getDescription());
$result_array_listproduct["asociated"]["product_attribute"]=$simple_product->getStockItem()->getQty();
$result_array_listproduct["asociated"]["product_attribute"]=$simple_product->getAttributeText('color');
$result_array_listproduct["asociated"]["product_type"]=$simple_product->getTypeId();
$result_array_listproduct["asociated"]["visibility"]= $simple_product->getVisibility();
//echo "<pre>";
//print_r($result_array_listproduct["asociated"]);

array_push($result_array_listproduct,$result_array_listproduct["asociated"]);




array_push($result_array, $result_array_listproduct);


echo "<pre>";
print_r($result_array);
?>









share|improve this question














bumped to the homepage by Community 14 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.















  • Great work i have checked your given api :)

    – Vipin Kumar
    Aug 24 '18 at 11:01













0












0








0








I want to get configurable product with associated my code is below when I try to get 2 0r 3 configuration product with associated not get configuration product related simple product properly suggest me how can possible?



<?php
error_reporting(0);
include("../app/Mage.php");
umask(0);
Mage::app();
$result_array = array();
$result_array_listproduct = array();
// $result_array_associated = array();
$product_collection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('*')
->load();
foreach ($product_collection as $product)
$ids[] = $product->getId();

// echo "<pre>";
// print_r($ids);
// exit();
for($i=0;$ids[$i];$i++)
$_product = Mage::getModel('catalog/product')->load($ids[$i]);
echo $product_visi=$_product->getVisibility();

if($_product->getTypeId() == "configurable")

$result_array_listproduct["product_id"]=$product_id=$_product->getId(); // product id
$result_array_listproduct["product_name"]=$product_name=$_product->getName(); //product name
$result_array_listproduct["product_image"]=$product_image=$_product->getImageUrl(); //product's image url
$result_array_listproduct["product_small_image"]=$product_small_image=$_product->getSmallImageUrl(); //product's small image url
$result_array_listproduct["product_thumbnail_image"]=$product_thumbnail_image=$_product->getThumbnailUrl(); //product's thumbnail image url
$result_array_listproduct["product_regular_price"]=$product_regular_price=$_product->getPrice(); //product's regular Price
$result_array_listproduct["product_special_price"]=$product_special_price=$_product->getSpecialPrice();
$result_array_listproduct["product_short_description"]=$product_short_description=$_product->getShortDescription(); //product's short description
$result_array_listproduct["product_long_description"]=$product_long_description=htmlentities($_product->getDescription()); // product's long description
$result_array_listproduct["product_qty"]=$product_qty=$_product->getStockItem()->getQty();// get product Qty
$result_array_listproduct["product_attribute"]=$product_attribute=$_product->getAttributeText('color'); // get product attribute color
$result_array_listproduct["product_type"]=$product_type=$_product->getTypeId();
$result_array_listproduct["product_visi"]=$product_visi=$_product->getVisibility();

//print_r($result_array_listproduct);

$conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product);
$simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();
foreach($simple_collection as $simple_product)
$result_array_listproduct["asociated"]["product_id"]= $simple_product->getId();
$result_array_listproduct["asociated"]["product_name"]=$simple_product->getName();
$result_array_listproduct["asociated"]["product_image"]=$simple_product->getImageUrl();
$result_array_listproduct["asociated"]["product_small_image"]=$simple_product->getSmallImageUrl();
$result_array_listproduct["asociated"]["product_thumbnail_image"]=$simple_product->getThumbnailUrl();
$result_array_listproduct["asociated"]["product_regular_price"]=$simple_product->getPrice();
$result_array_listproduct["asociated"]["product_special_price"]=$simple_product->getSpecialPrice();
$result_array_listproduct["asociated"]["sku"]=$simple_product->getSku();
$result_array_listproduct["asociated"]["product_short_description"]=$simple_product->getShortDescription();
$result_array_listproduct["asociated"]["product_long_description"]=htmlentities($simple_product->getDescription());
$result_array_listproduct["asociated"]["product_attribute"]=$simple_product->getStockItem()->getQty();
$result_array_listproduct["asociated"]["product_attribute"]=$simple_product->getAttributeText('color');
$result_array_listproduct["asociated"]["product_type"]=$simple_product->getTypeId();
$result_array_listproduct["asociated"]["visibility"]= $simple_product->getVisibility();
//echo "<pre>";
//print_r($result_array_listproduct["asociated"]);

array_push($result_array_listproduct,$result_array_listproduct["asociated"]);




array_push($result_array, $result_array_listproduct);


echo "<pre>";
print_r($result_array);
?>









share|improve this question














I want to get configurable product with associated my code is below when I try to get 2 0r 3 configuration product with associated not get configuration product related simple product properly suggest me how can possible?



<?php
error_reporting(0);
include("../app/Mage.php");
umask(0);
Mage::app();
$result_array = array();
$result_array_listproduct = array();
// $result_array_associated = array();
$product_collection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('*')
->load();
foreach ($product_collection as $product)
$ids[] = $product->getId();

// echo "<pre>";
// print_r($ids);
// exit();
for($i=0;$ids[$i];$i++)
$_product = Mage::getModel('catalog/product')->load($ids[$i]);
echo $product_visi=$_product->getVisibility();

if($_product->getTypeId() == "configurable")

$result_array_listproduct["product_id"]=$product_id=$_product->getId(); // product id
$result_array_listproduct["product_name"]=$product_name=$_product->getName(); //product name
$result_array_listproduct["product_image"]=$product_image=$_product->getImageUrl(); //product's image url
$result_array_listproduct["product_small_image"]=$product_small_image=$_product->getSmallImageUrl(); //product's small image url
$result_array_listproduct["product_thumbnail_image"]=$product_thumbnail_image=$_product->getThumbnailUrl(); //product's thumbnail image url
$result_array_listproduct["product_regular_price"]=$product_regular_price=$_product->getPrice(); //product's regular Price
$result_array_listproduct["product_special_price"]=$product_special_price=$_product->getSpecialPrice();
$result_array_listproduct["product_short_description"]=$product_short_description=$_product->getShortDescription(); //product's short description
$result_array_listproduct["product_long_description"]=$product_long_description=htmlentities($_product->getDescription()); // product's long description
$result_array_listproduct["product_qty"]=$product_qty=$_product->getStockItem()->getQty();// get product Qty
$result_array_listproduct["product_attribute"]=$product_attribute=$_product->getAttributeText('color'); // get product attribute color
$result_array_listproduct["product_type"]=$product_type=$_product->getTypeId();
$result_array_listproduct["product_visi"]=$product_visi=$_product->getVisibility();

//print_r($result_array_listproduct);

$conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product);
$simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();
foreach($simple_collection as $simple_product)
$result_array_listproduct["asociated"]["product_id"]= $simple_product->getId();
$result_array_listproduct["asociated"]["product_name"]=$simple_product->getName();
$result_array_listproduct["asociated"]["product_image"]=$simple_product->getImageUrl();
$result_array_listproduct["asociated"]["product_small_image"]=$simple_product->getSmallImageUrl();
$result_array_listproduct["asociated"]["product_thumbnail_image"]=$simple_product->getThumbnailUrl();
$result_array_listproduct["asociated"]["product_regular_price"]=$simple_product->getPrice();
$result_array_listproduct["asociated"]["product_special_price"]=$simple_product->getSpecialPrice();
$result_array_listproduct["asociated"]["sku"]=$simple_product->getSku();
$result_array_listproduct["asociated"]["product_short_description"]=$simple_product->getShortDescription();
$result_array_listproduct["asociated"]["product_long_description"]=htmlentities($simple_product->getDescription());
$result_array_listproduct["asociated"]["product_attribute"]=$simple_product->getStockItem()->getQty();
$result_array_listproduct["asociated"]["product_attribute"]=$simple_product->getAttributeText('color');
$result_array_listproduct["asociated"]["product_type"]=$simple_product->getTypeId();
$result_array_listproduct["asociated"]["visibility"]= $simple_product->getVisibility();
//echo "<pre>";
//print_r($result_array_listproduct["asociated"]);

array_push($result_array_listproduct,$result_array_listproduct["asociated"]);




array_push($result_array, $result_array_listproduct);


echo "<pre>";
print_r($result_array);
?>






magento-1.9 configurable-product associate-products






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 16 '16 at 9:04









Rahul PrajapatiRahul Prajapati

54




54





bumped to the homepage by Community 14 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







bumped to the homepage by Community 14 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.














  • Great work i have checked your given api :)

    – Vipin Kumar
    Aug 24 '18 at 11:01

















  • Great work i have checked your given api :)

    – Vipin Kumar
    Aug 24 '18 at 11:01
















Great work i have checked your given api :)

– Vipin Kumar
Aug 24 '18 at 11:01





Great work i have checked your given api :)

– Vipin Kumar
Aug 24 '18 at 11:01










1 Answer
1






active

oldest

votes


















0














finally I got solution long time searching relate and code is below



error_reporting(0);
include("../app/Mage.php");
umask(0);
Mage::app();
$result_array = array();
$result_array_listproduct = array();
$result_array_associated = array();
$product_collection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('*')
->load();
foreach ($product_collection as $product)
$ids[] = $product->getId();

// echo "<pre>";
// print_r($ids);
// exit();
for($i=0;$ids[$i];$i++)



$_product = Mage::getModel('catalog/product')->load($ids[$i]);

$product_visi=$_product->getVisibility();

if($product_visi == "4")

$result_array_listproduct["product_id"]=$product_id=$_product->getId(); // product id
$result_array_listproduct["product_name"]=$product_name=$_product->getName(); //product name
$result_array_listproduct["product_image"]=$product_image=$_product->getImageUrl(); //product's image url
$result_array_listproduct["product_small_image"]=$product_small_image=$_product->getSmallImageUrl(); //product's small image url
$result_array_listproduct["product_thumbnail_image"]=$product_thumbnail_image=$_product->getThumbnailUrl(); //product's thumbnail image url
$result_array_listproduct["product_all_images"]=$product_all_image=array();


//$product = Mage::getModel('catalog/product')->load($_product->getId());
$images='';
foreach ($_product->getMediaGalleryImages() as $image)
$images[]=$image->getUrl();


array_push($result_array_listproduct["product_all_images"],$images);


$result_array_listproduct["product_regular_price"]=$product_regular_price=$_product->getPrice(); //product's regular Price
$result_array_listproduct["product_special_price"]=$product_special_price=$_product->getSpecialPrice();
$result_array_listproduct["sku"]=$sku=$_product->getSku();
$result_array_listproduct["product_short_description"]=$product_short_description=htmlentities(preg_replace('/"/',' ',$_product->getShortDescription())); //product's short description
$result_array_listproduct["product_long_description"]=$product_long_description=htmlentities(preg_replace('/"/',' ',$_product->getDescription())); // product's long description
$result_array_listproduct["product_qty"]=$product_qty=$_product->getStockItem()->getQty();// get product Qty
$result_array_listproduct["product_attribute"]=$product_attribute=$_product->getAttributeText('color'); // get product attribute color
$result_array_listproduct["product_type"]=$product_type=$_product->getTypeId();
$result_array_listproduct["product_status"]=$product_status=$product->getStatus();
$result_array_listproduct["product_visi"]=$product_visi=$_product->getVisibility();
$result_array_listproduct["asociated"]= array();
//print_r($result_array_listproduct);

if($product_type=="configurable")
$conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product);
$simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();
foreach($simple_collection as $simple_product)
$result_array_associated["product_id"]= $simple_product->getId();
$result_array_associated["product_name"]=$simple_product->getName();
$result_array_associated["product_image"]=$simple_product->getImageUrl();
$result_array_associated["product_small_image"]=$simple_product->getSmallImageUrl();
$result_array_associated["product_thumbnail_image"]=$simple_product->getThumbnailUrl();
$result_array_associated["product_regular_price"]=$simple_product->getPrice();
$result_array_associated["product_special_price"]=$simple_product->getSpecialPrice();
$result_array_associated["sku"]=$simple_product->getSku();
$result_array_associated["product_short_description"]=htmlentities(preg_replace('/"/',' ',$simple_product->getShortDescription()));
$result_array_associated["product_long_description"]=htmlentities(preg_replace('/"/',' ',$simple_product->getDescription()));
$result_array_associated["product_qty"]=$simple_product->getStockItem()->getQty();
$result_array_associated["product_attribute"]=$color=$simple_product->getAttributeText('color');
//$result_array_associated["option_id"]= $simple_product->getResource()->getAttribute("color")->getSource()->getOptionId($color);
$result_array_associated["option_id"]= $simple_product->getResource()->getAttribute(92)->getSource()->getOptionId($color);
$result_array_associated["product_type"]=$simple_product->getTypeId();
$result_array_associated["product_status"]=$simple_product->getStatus();
$result_array_associated["visibility"]= $simple_product->getVisibility();

//echo "<pre>";
//print_r($result_array_listproduct["asociated"]);

array_push($result_array_listproduct["asociated"],$result_array_associated);




array_push($result_array, $result_array_listproduct);



echo "<pre>";
print_r($result_array);
//echo json_encode($result_array);





share|improve this answer






















    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%2f106495%2fhow-can-get-configurable-product-with-associated-products%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    finally I got solution long time searching relate and code is below



    error_reporting(0);
    include("../app/Mage.php");
    umask(0);
    Mage::app();
    $result_array = array();
    $result_array_listproduct = array();
    $result_array_associated = array();
    $product_collection = Mage::getResourceModel('catalog/product_collection')
    ->addAttributeToSelect('*')
    ->load();
    foreach ($product_collection as $product)
    $ids[] = $product->getId();

    // echo "<pre>";
    // print_r($ids);
    // exit();
    for($i=0;$ids[$i];$i++)



    $_product = Mage::getModel('catalog/product')->load($ids[$i]);

    $product_visi=$_product->getVisibility();

    if($product_visi == "4")

    $result_array_listproduct["product_id"]=$product_id=$_product->getId(); // product id
    $result_array_listproduct["product_name"]=$product_name=$_product->getName(); //product name
    $result_array_listproduct["product_image"]=$product_image=$_product->getImageUrl(); //product's image url
    $result_array_listproduct["product_small_image"]=$product_small_image=$_product->getSmallImageUrl(); //product's small image url
    $result_array_listproduct["product_thumbnail_image"]=$product_thumbnail_image=$_product->getThumbnailUrl(); //product's thumbnail image url
    $result_array_listproduct["product_all_images"]=$product_all_image=array();


    //$product = Mage::getModel('catalog/product')->load($_product->getId());
    $images='';
    foreach ($_product->getMediaGalleryImages() as $image)
    $images[]=$image->getUrl();


    array_push($result_array_listproduct["product_all_images"],$images);


    $result_array_listproduct["product_regular_price"]=$product_regular_price=$_product->getPrice(); //product's regular Price
    $result_array_listproduct["product_special_price"]=$product_special_price=$_product->getSpecialPrice();
    $result_array_listproduct["sku"]=$sku=$_product->getSku();
    $result_array_listproduct["product_short_description"]=$product_short_description=htmlentities(preg_replace('/"/',' ',$_product->getShortDescription())); //product's short description
    $result_array_listproduct["product_long_description"]=$product_long_description=htmlentities(preg_replace('/"/',' ',$_product->getDescription())); // product's long description
    $result_array_listproduct["product_qty"]=$product_qty=$_product->getStockItem()->getQty();// get product Qty
    $result_array_listproduct["product_attribute"]=$product_attribute=$_product->getAttributeText('color'); // get product attribute color
    $result_array_listproduct["product_type"]=$product_type=$_product->getTypeId();
    $result_array_listproduct["product_status"]=$product_status=$product->getStatus();
    $result_array_listproduct["product_visi"]=$product_visi=$_product->getVisibility();
    $result_array_listproduct["asociated"]= array();
    //print_r($result_array_listproduct);

    if($product_type=="configurable")
    $conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product);
    $simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();
    foreach($simple_collection as $simple_product)
    $result_array_associated["product_id"]= $simple_product->getId();
    $result_array_associated["product_name"]=$simple_product->getName();
    $result_array_associated["product_image"]=$simple_product->getImageUrl();
    $result_array_associated["product_small_image"]=$simple_product->getSmallImageUrl();
    $result_array_associated["product_thumbnail_image"]=$simple_product->getThumbnailUrl();
    $result_array_associated["product_regular_price"]=$simple_product->getPrice();
    $result_array_associated["product_special_price"]=$simple_product->getSpecialPrice();
    $result_array_associated["sku"]=$simple_product->getSku();
    $result_array_associated["product_short_description"]=htmlentities(preg_replace('/"/',' ',$simple_product->getShortDescription()));
    $result_array_associated["product_long_description"]=htmlentities(preg_replace('/"/',' ',$simple_product->getDescription()));
    $result_array_associated["product_qty"]=$simple_product->getStockItem()->getQty();
    $result_array_associated["product_attribute"]=$color=$simple_product->getAttributeText('color');
    //$result_array_associated["option_id"]= $simple_product->getResource()->getAttribute("color")->getSource()->getOptionId($color);
    $result_array_associated["option_id"]= $simple_product->getResource()->getAttribute(92)->getSource()->getOptionId($color);
    $result_array_associated["product_type"]=$simple_product->getTypeId();
    $result_array_associated["product_status"]=$simple_product->getStatus();
    $result_array_associated["visibility"]= $simple_product->getVisibility();

    //echo "<pre>";
    //print_r($result_array_listproduct["asociated"]);

    array_push($result_array_listproduct["asociated"],$result_array_associated);




    array_push($result_array, $result_array_listproduct);



    echo "<pre>";
    print_r($result_array);
    //echo json_encode($result_array);





    share|improve this answer



























      0














      finally I got solution long time searching relate and code is below



      error_reporting(0);
      include("../app/Mage.php");
      umask(0);
      Mage::app();
      $result_array = array();
      $result_array_listproduct = array();
      $result_array_associated = array();
      $product_collection = Mage::getResourceModel('catalog/product_collection')
      ->addAttributeToSelect('*')
      ->load();
      foreach ($product_collection as $product)
      $ids[] = $product->getId();

      // echo "<pre>";
      // print_r($ids);
      // exit();
      for($i=0;$ids[$i];$i++)



      $_product = Mage::getModel('catalog/product')->load($ids[$i]);

      $product_visi=$_product->getVisibility();

      if($product_visi == "4")

      $result_array_listproduct["product_id"]=$product_id=$_product->getId(); // product id
      $result_array_listproduct["product_name"]=$product_name=$_product->getName(); //product name
      $result_array_listproduct["product_image"]=$product_image=$_product->getImageUrl(); //product's image url
      $result_array_listproduct["product_small_image"]=$product_small_image=$_product->getSmallImageUrl(); //product's small image url
      $result_array_listproduct["product_thumbnail_image"]=$product_thumbnail_image=$_product->getThumbnailUrl(); //product's thumbnail image url
      $result_array_listproduct["product_all_images"]=$product_all_image=array();


      //$product = Mage::getModel('catalog/product')->load($_product->getId());
      $images='';
      foreach ($_product->getMediaGalleryImages() as $image)
      $images[]=$image->getUrl();


      array_push($result_array_listproduct["product_all_images"],$images);


      $result_array_listproduct["product_regular_price"]=$product_regular_price=$_product->getPrice(); //product's regular Price
      $result_array_listproduct["product_special_price"]=$product_special_price=$_product->getSpecialPrice();
      $result_array_listproduct["sku"]=$sku=$_product->getSku();
      $result_array_listproduct["product_short_description"]=$product_short_description=htmlentities(preg_replace('/"/',' ',$_product->getShortDescription())); //product's short description
      $result_array_listproduct["product_long_description"]=$product_long_description=htmlentities(preg_replace('/"/',' ',$_product->getDescription())); // product's long description
      $result_array_listproduct["product_qty"]=$product_qty=$_product->getStockItem()->getQty();// get product Qty
      $result_array_listproduct["product_attribute"]=$product_attribute=$_product->getAttributeText('color'); // get product attribute color
      $result_array_listproduct["product_type"]=$product_type=$_product->getTypeId();
      $result_array_listproduct["product_status"]=$product_status=$product->getStatus();
      $result_array_listproduct["product_visi"]=$product_visi=$_product->getVisibility();
      $result_array_listproduct["asociated"]= array();
      //print_r($result_array_listproduct);

      if($product_type=="configurable")
      $conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product);
      $simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();
      foreach($simple_collection as $simple_product)
      $result_array_associated["product_id"]= $simple_product->getId();
      $result_array_associated["product_name"]=$simple_product->getName();
      $result_array_associated["product_image"]=$simple_product->getImageUrl();
      $result_array_associated["product_small_image"]=$simple_product->getSmallImageUrl();
      $result_array_associated["product_thumbnail_image"]=$simple_product->getThumbnailUrl();
      $result_array_associated["product_regular_price"]=$simple_product->getPrice();
      $result_array_associated["product_special_price"]=$simple_product->getSpecialPrice();
      $result_array_associated["sku"]=$simple_product->getSku();
      $result_array_associated["product_short_description"]=htmlentities(preg_replace('/"/',' ',$simple_product->getShortDescription()));
      $result_array_associated["product_long_description"]=htmlentities(preg_replace('/"/',' ',$simple_product->getDescription()));
      $result_array_associated["product_qty"]=$simple_product->getStockItem()->getQty();
      $result_array_associated["product_attribute"]=$color=$simple_product->getAttributeText('color');
      //$result_array_associated["option_id"]= $simple_product->getResource()->getAttribute("color")->getSource()->getOptionId($color);
      $result_array_associated["option_id"]= $simple_product->getResource()->getAttribute(92)->getSource()->getOptionId($color);
      $result_array_associated["product_type"]=$simple_product->getTypeId();
      $result_array_associated["product_status"]=$simple_product->getStatus();
      $result_array_associated["visibility"]= $simple_product->getVisibility();

      //echo "<pre>";
      //print_r($result_array_listproduct["asociated"]);

      array_push($result_array_listproduct["asociated"],$result_array_associated);




      array_push($result_array, $result_array_listproduct);



      echo "<pre>";
      print_r($result_array);
      //echo json_encode($result_array);





      share|improve this answer

























        0












        0








        0







        finally I got solution long time searching relate and code is below



        error_reporting(0);
        include("../app/Mage.php");
        umask(0);
        Mage::app();
        $result_array = array();
        $result_array_listproduct = array();
        $result_array_associated = array();
        $product_collection = Mage::getResourceModel('catalog/product_collection')
        ->addAttributeToSelect('*')
        ->load();
        foreach ($product_collection as $product)
        $ids[] = $product->getId();

        // echo "<pre>";
        // print_r($ids);
        // exit();
        for($i=0;$ids[$i];$i++)



        $_product = Mage::getModel('catalog/product')->load($ids[$i]);

        $product_visi=$_product->getVisibility();

        if($product_visi == "4")

        $result_array_listproduct["product_id"]=$product_id=$_product->getId(); // product id
        $result_array_listproduct["product_name"]=$product_name=$_product->getName(); //product name
        $result_array_listproduct["product_image"]=$product_image=$_product->getImageUrl(); //product's image url
        $result_array_listproduct["product_small_image"]=$product_small_image=$_product->getSmallImageUrl(); //product's small image url
        $result_array_listproduct["product_thumbnail_image"]=$product_thumbnail_image=$_product->getThumbnailUrl(); //product's thumbnail image url
        $result_array_listproduct["product_all_images"]=$product_all_image=array();


        //$product = Mage::getModel('catalog/product')->load($_product->getId());
        $images='';
        foreach ($_product->getMediaGalleryImages() as $image)
        $images[]=$image->getUrl();


        array_push($result_array_listproduct["product_all_images"],$images);


        $result_array_listproduct["product_regular_price"]=$product_regular_price=$_product->getPrice(); //product's regular Price
        $result_array_listproduct["product_special_price"]=$product_special_price=$_product->getSpecialPrice();
        $result_array_listproduct["sku"]=$sku=$_product->getSku();
        $result_array_listproduct["product_short_description"]=$product_short_description=htmlentities(preg_replace('/"/',' ',$_product->getShortDescription())); //product's short description
        $result_array_listproduct["product_long_description"]=$product_long_description=htmlentities(preg_replace('/"/',' ',$_product->getDescription())); // product's long description
        $result_array_listproduct["product_qty"]=$product_qty=$_product->getStockItem()->getQty();// get product Qty
        $result_array_listproduct["product_attribute"]=$product_attribute=$_product->getAttributeText('color'); // get product attribute color
        $result_array_listproduct["product_type"]=$product_type=$_product->getTypeId();
        $result_array_listproduct["product_status"]=$product_status=$product->getStatus();
        $result_array_listproduct["product_visi"]=$product_visi=$_product->getVisibility();
        $result_array_listproduct["asociated"]= array();
        //print_r($result_array_listproduct);

        if($product_type=="configurable")
        $conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product);
        $simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();
        foreach($simple_collection as $simple_product)
        $result_array_associated["product_id"]= $simple_product->getId();
        $result_array_associated["product_name"]=$simple_product->getName();
        $result_array_associated["product_image"]=$simple_product->getImageUrl();
        $result_array_associated["product_small_image"]=$simple_product->getSmallImageUrl();
        $result_array_associated["product_thumbnail_image"]=$simple_product->getThumbnailUrl();
        $result_array_associated["product_regular_price"]=$simple_product->getPrice();
        $result_array_associated["product_special_price"]=$simple_product->getSpecialPrice();
        $result_array_associated["sku"]=$simple_product->getSku();
        $result_array_associated["product_short_description"]=htmlentities(preg_replace('/"/',' ',$simple_product->getShortDescription()));
        $result_array_associated["product_long_description"]=htmlentities(preg_replace('/"/',' ',$simple_product->getDescription()));
        $result_array_associated["product_qty"]=$simple_product->getStockItem()->getQty();
        $result_array_associated["product_attribute"]=$color=$simple_product->getAttributeText('color');
        //$result_array_associated["option_id"]= $simple_product->getResource()->getAttribute("color")->getSource()->getOptionId($color);
        $result_array_associated["option_id"]= $simple_product->getResource()->getAttribute(92)->getSource()->getOptionId($color);
        $result_array_associated["product_type"]=$simple_product->getTypeId();
        $result_array_associated["product_status"]=$simple_product->getStatus();
        $result_array_associated["visibility"]= $simple_product->getVisibility();

        //echo "<pre>";
        //print_r($result_array_listproduct["asociated"]);

        array_push($result_array_listproduct["asociated"],$result_array_associated);




        array_push($result_array, $result_array_listproduct);



        echo "<pre>";
        print_r($result_array);
        //echo json_encode($result_array);





        share|improve this answer













        finally I got solution long time searching relate and code is below



        error_reporting(0);
        include("../app/Mage.php");
        umask(0);
        Mage::app();
        $result_array = array();
        $result_array_listproduct = array();
        $result_array_associated = array();
        $product_collection = Mage::getResourceModel('catalog/product_collection')
        ->addAttributeToSelect('*')
        ->load();
        foreach ($product_collection as $product)
        $ids[] = $product->getId();

        // echo "<pre>";
        // print_r($ids);
        // exit();
        for($i=0;$ids[$i];$i++)



        $_product = Mage::getModel('catalog/product')->load($ids[$i]);

        $product_visi=$_product->getVisibility();

        if($product_visi == "4")

        $result_array_listproduct["product_id"]=$product_id=$_product->getId(); // product id
        $result_array_listproduct["product_name"]=$product_name=$_product->getName(); //product name
        $result_array_listproduct["product_image"]=$product_image=$_product->getImageUrl(); //product's image url
        $result_array_listproduct["product_small_image"]=$product_small_image=$_product->getSmallImageUrl(); //product's small image url
        $result_array_listproduct["product_thumbnail_image"]=$product_thumbnail_image=$_product->getThumbnailUrl(); //product's thumbnail image url
        $result_array_listproduct["product_all_images"]=$product_all_image=array();


        //$product = Mage::getModel('catalog/product')->load($_product->getId());
        $images='';
        foreach ($_product->getMediaGalleryImages() as $image)
        $images[]=$image->getUrl();


        array_push($result_array_listproduct["product_all_images"],$images);


        $result_array_listproduct["product_regular_price"]=$product_regular_price=$_product->getPrice(); //product's regular Price
        $result_array_listproduct["product_special_price"]=$product_special_price=$_product->getSpecialPrice();
        $result_array_listproduct["sku"]=$sku=$_product->getSku();
        $result_array_listproduct["product_short_description"]=$product_short_description=htmlentities(preg_replace('/"/',' ',$_product->getShortDescription())); //product's short description
        $result_array_listproduct["product_long_description"]=$product_long_description=htmlentities(preg_replace('/"/',' ',$_product->getDescription())); // product's long description
        $result_array_listproduct["product_qty"]=$product_qty=$_product->getStockItem()->getQty();// get product Qty
        $result_array_listproduct["product_attribute"]=$product_attribute=$_product->getAttributeText('color'); // get product attribute color
        $result_array_listproduct["product_type"]=$product_type=$_product->getTypeId();
        $result_array_listproduct["product_status"]=$product_status=$product->getStatus();
        $result_array_listproduct["product_visi"]=$product_visi=$_product->getVisibility();
        $result_array_listproduct["asociated"]= array();
        //print_r($result_array_listproduct);

        if($product_type=="configurable")
        $conf = Mage::getModel('catalog/product_type_configurable')->setProduct($_product);
        $simple_collection = $conf->getUsedProductCollection()->addAttributeToSelect('*')->addFilterByRequiredOptions();
        foreach($simple_collection as $simple_product)
        $result_array_associated["product_id"]= $simple_product->getId();
        $result_array_associated["product_name"]=$simple_product->getName();
        $result_array_associated["product_image"]=$simple_product->getImageUrl();
        $result_array_associated["product_small_image"]=$simple_product->getSmallImageUrl();
        $result_array_associated["product_thumbnail_image"]=$simple_product->getThumbnailUrl();
        $result_array_associated["product_regular_price"]=$simple_product->getPrice();
        $result_array_associated["product_special_price"]=$simple_product->getSpecialPrice();
        $result_array_associated["sku"]=$simple_product->getSku();
        $result_array_associated["product_short_description"]=htmlentities(preg_replace('/"/',' ',$simple_product->getShortDescription()));
        $result_array_associated["product_long_description"]=htmlentities(preg_replace('/"/',' ',$simple_product->getDescription()));
        $result_array_associated["product_qty"]=$simple_product->getStockItem()->getQty();
        $result_array_associated["product_attribute"]=$color=$simple_product->getAttributeText('color');
        //$result_array_associated["option_id"]= $simple_product->getResource()->getAttribute("color")->getSource()->getOptionId($color);
        $result_array_associated["option_id"]= $simple_product->getResource()->getAttribute(92)->getSource()->getOptionId($color);
        $result_array_associated["product_type"]=$simple_product->getTypeId();
        $result_array_associated["product_status"]=$simple_product->getStatus();
        $result_array_associated["visibility"]= $simple_product->getVisibility();

        //echo "<pre>";
        //print_r($result_array_listproduct["asociated"]);

        array_push($result_array_listproduct["asociated"],$result_array_associated);




        array_push($result_array, $result_array_listproduct);



        echo "<pre>";
        print_r($result_array);
        //echo json_encode($result_array);






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 23 '16 at 10:33









        Rahul PrajapatiRahul Prajapati

        54




        54



























            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%2f106495%2fhow-can-get-configurable-product-with-associated-products%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

            Magento 2 duplicate PHPSESSID cookie when using session_start() in custom php scriptMagento 2: User cant logged in into to account page, no error showing!Magento duplicate on subdomainGrabbing storeview from cookie (after using language selector)How do I run php custom script on magento2Magento 2: Include PHP script in headerSession lock after using Cm_RedisSessionscript php to update stockMagento set cookie popupMagento 2 session id cookie - where to find it?How to import Configurable product from csv with custom attributes using php scriptMagento 2 run custom PHP script

            Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

            How to solve knockout JS error in Magento 2 Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?(Magento2) knockout.js:3012 Uncaught ReferenceError: Unable to process bindingUnable to process binding Knockout.js magento 2Cannot read property `scopeLabel` of undefined on Product Detail PageCan't get Customer Data on frontend in Magento 2Magento2 Order Summary - unable to process bindingKO templates are not loading in Magento 2.1 applicationgetting knockout js error magento 2Product grid not load -— Unable to process binding Knockout.js magento 2Product form not loaded in magento2Uncaught ReferenceError: Unable to process binding “if: function()return (isShowLegend()) ” magento 2