Posts Tagged “Joomla Administrator”

Joomla CMS has built-in functionality for Search Engine Optimization (SEO).

To turn on the SEO settings for Joomla CMS:

1)  Rename the htaccess.txt to .htaccess at your Joomla directory
2)  Log in Joomla Administrator
3)  At Site, Global Configuration
4)  SEO Settings, then select “Yes” to enable:

  • Search Engine Friendly URLs”
  • use Apache mod_rewrite

If found the subpages links or URLs not working after enabled, you can revert back the original settings.

For manually revert back if you unable to login the Joomla Admin interface:

1)  Open your Filemanager or FTP client
2)  Goto your Joomla CMS directory
3)  Rename .htaccess back to htaccess.txt
4)  Edit configuration.php

$mosConfig_sef = ‘0′; #This is to disable

5) Save the file.

Tags: , , , , , ,

Comments No Comments »

Firstly, go to the directory path at: administrator/modules/mod_menu

Then modify the file “Helper.php

Find the section:
/* Help SubMenu */ or text ‘Help’

Delete the word ‘Help’ to make the statement become this:
$menu->addChild(new JMenuNode(JText::_(”)), true);

This will hide or remove the ‘Help’ Menu at Joomla! Administrator Control Panel

You can also change the links or text of the menu, for example:
$menu->addChild(new JMenuNode(JText::_(’Your Link‘), ‘http://www.website-url.com‘, ‘class:help’));

Tags: ,

Comments 1 Comment »