Archive for the ‘Joomla 1.5’ Category

Remove Generator META in Joomla

For security reason, you may want to remove generator META in your joomla project :

for this you can simply add this line :

 $this->setGenerator(''); 

in the top of your ‘index.php’ template file.

Test if you’re on the homepage in Joomla

Hello,

today I’ll show you an elegant way to check if we are in the home page of our Joomla project :

 $IsHomePage =  false;
$menu = &JSite::getMenu();
if( $menu->_default == $menu->_active)
{
	$IsHomePage = true;
}

it’s specialy helpfull for intergators (templates).

Return top

About ME

A Web developer, Made in Morocco

Facebook
Twitter
Linkedin
Viadeo