Reputation: 115
I am using Magento 1.7 and I wanted to display category name in the cart page,from which products are added to the cart ..
Upvotes: 0
Views: 576
Reputation: 2443
try this
echo Mage::getModel('catalog/category')->load($this->getProduct()->getCategoryIds($_item->getProductId()))->getName();
add this line near product name or where you want category name in app/design/frontend/default/[yourtheme]/template/checkout/cart/item/default.phtml
hope this help you
Upvotes: 1