Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wanted to display all categories ( with detail like name. description etc..) and their products ( with name, price,add to cart option etc..) on a single page in magento.

Please suggest, how this can be done?

Thanks in advance!

Best Regards,

share|improve this question
This question is not specific enough. What problems do you encounter? – Lucas Moeskops Dec 15 '11 at 10:54

2 Answers

up vote 0 down vote accepted
$rootCategoryId = Mage::app()->getStore()->getRootCategoryId();
$category = Mage::getModel('catalog/category')->load($rootCategoryId);

// get all sub categories of the root category
$subCategory = $category->getChildrenCategories();

// display parent category of the current category
$currentCategory = Mage::registry('current_category');
echo $this->getCurrentCategory()->getParentCategory()->getName() ;

/* another sample */

$currentCategory = Mage::registry('current_category');

// display sub-category of current category
if ($currentCategory->getParentId() == Mage::app()->getStore()->getRootCategoryId())
{
   // current category top-level category
   $rootCategory = $currentCategory;
}

else {  
// current category sub category of top-level category
$rootCategory = Mage::getModel('catalog/category')->load($currentCategory->getParentId());
}  

$subCategory = explode(',', $rootCategory->getChildren());
foreach ( $subCategories as $subCategoryId )
{
   $categories = Mage::getModel('catalog/category')->load($subCategoryId);

   // get status of category
   if($categories ->getIsActive())
   {
      echo '<a href="'.$categories->getURL().'">'.$categories->getName().'</a>';
   }
}
share|improve this answer

To get all products :

$collection = Mage::getModel('catalog/product')
                        ->getCollection()
                        ->addAttributeToSelect('*');

foreach ($collection as $product) {
    echo $product->getName() . "<br />";
}

link where it is copied from

and to get all the categories :

$categories = Mage::getModel('catalog/category')
                    ->getCollection()
                    ->addAttributeToSelect('*');

link copied from

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.