javascript - How to hide the article at the home page in joomla 2.5 -
how hide article @ home page in joomla 2.5?
some times want have home page out showing empty article.
there few ways this, , depend on specific use case.
for example, if want hide on homepage, can change template following.
find:
<jdoc:include type="component" />
change to:
$menu = & jsite::getmenu(); if ($menu->getactive() != $menu->getdefault()) { <jdoc:include type="component" />; }
no need worry js.
Comments
Post a Comment