Change meta name "generator"
- Details
- Category: General Category
- Published on Monday, 29 November 2010 16:13
- Hits: 8355
How can you remove this from the source code:
<meta name="generator" content="Joomla! 1.5 - Open Source Content Management" />
Solution:-
In the index.php file of your template in the head section just add this:
Code:
<?php $this->setGenerator(' '); ?>
inside ' ' you can add your content like
<?php $this->setGenerator(' I am a fool'); ?>
Add comment

