Display category title in Magento
Quick method of retrieving and displaying Current Category title by echo in Magento.
<?php
//Get current category from registry
$currentCategory = Mage::registry("current_category");
//Display the current Category Title
echo $currentCategory->getName();
?>
Related Articles
- 23.06.11: Add logo to print popup in Joomla (0)
- 28.02.11: Joomla permissions (3)
- 17.06.11: Sales order error in Magento Sage Pay (0)
- 05.04.11: CSR contains a key size that is less than 2048 bits (0)
- 14.03.11: Turn off page titles globally in Joomla (0)









Comments RSS Feed





above posted code gives me error.
Fatal error: Call to a member function getName() on a non-object
Go to Top of the page