Forums

How to change the window title?

szd94 18 Jul, 2012
How to change this:


And is it possible to change it per form?

Thanks a lot!
GreyHead 18 Jul, 2012
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.
<?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
szd94 18 Jul, 2012
Thanks bob, it worked!
This topic is locked and no more replies can be posted.