On a page that is generated by Joomla, by default you will always see a meta tag like following:
<meta name="generator" content="Joomla! 1.5 - Open Source Content Management" />
There are two ways you can remove generator meta tag from Joomla 1.5The easier way is Go to Extensions => Template Manager open your default template and click on "Edit HTML", add following one line of code anywhere between html tags
<head> and </head>setGenerator('Your own meta tags or leave it blank'); ?>
Save
The second way will remove the generator meta tag from your page source code completely:
Open <server_root_path>/libraries/joomla/document/html/renderer/head.phpfind for "generator" in the php file
Remove => line $strHtml .= $tab.'<meta name="generator" content="'.$document->getGenerator().'" />'.$lnEnd;
Save
| < Prev | Next > |
|---|
-
Joomla 2.5 Security ReleaseThe Joomla Project has just announced the immediate availability of Joomla 2.5.3. This is a security release and you should upgrade your site immediately. All versions of +Joomla! 1.6, 1.7 and 2.5 are affected. The update process is very simple, and complete instructions are available here. You can easily update your site from 2.5.x to this latest version using the update function in the Joomla administrator The best way of updating your site from 2.5.x is to use the built-in upgrade function...
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12


