Forums
How to change the window title?
Hi szd94,
I don't think you can change the admin page title. You can change the front-end page title by adding a Custom Code action to the On Load event.
Note that this may not work if you have used the ChronoForms plug-in to put the form in a Joomla! article as the article will also try to set the page title. Similarly Menu links and SEF URL extensions may alter the title.
Bob
I don't think you can change the admin page title. You can change the front-end page title by adding a Custom Code action to the On Load event.
<?php
$doc=& JFactory::getDocument();
$doc->setTitle('put the title here');
?>
Note that this may not work if you have used the ChronoForms plug-in to put the form in a Joomla! article as the article will also try to set the page title. Similarly Menu links and SEF URL extensions may alter the title.
Bob
This topic is locked and no more replies can be posted.