Reputation: 1601
Need all joomla pages <jdoc:include type="head" /> in header except home page , what is the solution ?
<jdoc:include type="head" />
Thanks
Upvotes: 0
Views: 977
Reputation: 64526
Joomla 1.6, 1.7 and 2.5
<?php $app = JFactory::getApplication(); $menu = $app->getMenu(); if ($menu->getActive() != $menu->getDefault()): ?> <jdoc:include type="head" /> <?php endif; ?>
Reference.
Upvotes: 5