Hunter
Hunter

Reputation: 1601

Need all joomla pages <jdoc:include type="head" /> in header except home page

Need all joomla pages <jdoc:include type="head" /> in header except home page , what is the solution ?

Thanks

Upvotes: 0

Views: 977

Answers (1)

MrCode
MrCode

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

Related Questions