способ 1
не пашет в индексе, пашет в макете меню
<?php if (JURI::current() !== JURI::base()) : ?> //information here <?php endif; ?>
способ 2
пашет в индексе
<?php $menu = JSite::getMenu(); if ($menu->getActive()->id != $menu->getDefault()->id): ?> <jdoc:include type="component" /> <?php endif; ?>
способ 3
<?php if(! JMenuSite::getInstance('site')->getActive()->home): ?>
<jdoc:include type="component" />
<?php endif; ?>