======How to determine if the user is viewing the front page====== In Joomla! 1.0.x it was possible to determine if the user was viewing the front page by using code like this: But in Joomla! 1.5.x the com_frontpage component is no longer present. This is how to achieve the same result in Joomla! 1.5.x getActive() == $menu->getDefault()) { echo 'This is the front page'; } ?> This works by checking to see if the current active menu item is the default one. ---- ~~DISCUSSION~~