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 have read the previously asked and answered thread: Magento display all categories on product view page with parent categories

with the code:

$currentCatIds = $_product->getCategoryIds();
$categoryCollection = Mage::getResourceModel('catalog/category_collection')
                     ->addAttributeToSelect('name')
                     ->addAttributeToSelect('url')
                     ->addAttributeToFilter('entity_id', $currentCatIds)
                     ->addIsActiveFilter();
foreach($categoryCollection as $cat){
  echo $cat->getName().' '.$cat->getUrl();
}

The code does add the category links to my product page, which is what I want.

But I have one specific category named "Default Category", and all other categories are under it. Is there anyway I can filter the "Default Category" and hide it from the product page?

I am terrible at PHP so please help me.

Thank you very much

Marcus

share|improve this question

3 Answers

Try adding category level filter. Default Category have level = 1, children gets +1

$categoryCollection = Mage::getResourceModel('catalog/category_collection')
                 ->addAttributeToSelect('name')
                 ->addAttributeToSelect('url')
                 ->addFieldToFilter('level', array('gteq' => 1));
                 ->addAttributeToFilter('entity_id', $currentCatIds)
                 ->addIsActiveFilter();
share|improve this answer

If you need to list all the categories related to the selected product in the product view page, you just need to put the following code in the app/design/frontend///template/catalog/product/view.phtml

<?php $categories = $_product->getCategoryIds(); ?>
  <?php foreach($categories as $k => $_category_id): ?>
  <?php $_category = Mage::getModel('catalog/category')->load($_category_id) ?> 
< <a href="<?php echo $_category->getUrl() ?>"><?php echo $_category->getName() ?></a>
   <?php endforeach; ?>
share|improve this answer

I'm trying to get a something similar... but I don't need ALL the categories. I have items that are discontinued or no longer available that I still want to show in the Catalog when they are deeplinked from external sites.

So these items remain Enabled, Out of Stock (no inventory) and show a friendly message that they are no longer available. I'd like to add a link to that messaging that directs them to browse other items in the same category of the item they're viewing.

For example:

Sorry for the inconvenience, the Product ABC is no longer available. Please browse other items in Category > Sub Category > Category Name>

I tried the code above, and it outputs a link to each individual category, not just one of the categories my item is assigned to.

Suggestions?

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.