Theme Joomla Tips and Advice

Using PHP in Joomla to display your site name

Just as a quick beginner tip for any of you out there who are wanting to display or remove your site name in your site dynamically (if you change your domain or URL it will stay updated, by reading from your Joomla configuration file). Open up your template index.php file with a text editor - look for this:

 
Older Joomla Versions:
<?php echo $mosConfig_live_site;?>
 
Newer Joomla Versions:
<?php echo JText::_($mainframe->getCfg( 'live_site' ));?>

members

search