How can get configurable product with associated products? The Next CEO of Stack OverflowAdding 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
How did people program for Consoles with multiple CPUs?
Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?
Rotate a column
Why does standard notation not preserve intervals (visually)
Sending manuscript to multiple publishers
Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?
Return the Closest Prime Number
If/When UK leaves the EU, can a future goverment conduct a referendum to join the EU?
Why do remote companies require working in the US?
WOW air has ceased operation, can I get my tickets refunded?
Why do we use the plural of movies in this phrase "We went to the movies last night."?
What happens if you roll doubles 3 times then land on "Go to jail?"
How do I go from 300 unfinished/half written blog posts, to published posts?
Do I need to enable Dev Hub in my PROD Org?
Bold, vivid family
Unreliable Magic - Is it worth it?
How do I avoid eval and parse?
Anatomically Correct Strange Women In Ponds Distributing Swords
Is it possible to search for a directory/file combination?
Why has the US not been more assertive in confronting Russia in recent years?
Does it take more energy to get to Venus or to Mars?
What does convergence in distribution "in the Gromov–Hausdorff" sense mean?
How to safely derail a train during transit?
What benefits would be gained by using human laborers instead of drones in deep sea mining?
How can get configurable product with associated products?
The Next CEO of Stack OverflowAdding 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
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
bumped to the homepage by Community♦ 2 days ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
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
bumped to the homepage by Community♦ 2 days 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
add a comment |
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
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
magento-1.9 configurable-product associate-products
asked Mar 16 '16 at 9:04
Rahul PrajapatiRahul Prajapati
256
256
bumped to the homepage by Community♦ 2 days 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♦ 2 days 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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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);
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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);
add a comment |
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);
add a comment |
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);
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);
answered Mar 23 '16 at 10:33
Rahul PrajapatiRahul Prajapati
256
256
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Great work i have checked your given api :)
– Vipin Kumar
Aug 24 '18 at 11:01