In Magento on each products detail page I would like to list which categories which belongs to.
How would I go about achieving this?
In Magento on each products detail page I would like to list which categories which belongs to.
How would I go about achieving this?
Give this a try:
$currentCatIds = $_product->getCategoryIds();
and also
$categoryCollection = Mage::getResourceModel('catalog/category_collection')
->addAttributeToSelect('name')
->addAttributeToSelect('url')
->addAttributeToFilter('entity_id', $currentCatIds)
->addIsActiveFilter();
Cheers, JD