Can I set the page title?

Each Joomla! page has a title that shows in the Browser status bar or tab label. You can change this front-end page title by adding a Custom Code action to the On Load event.
<?php
$jdoc= \JFactory::getDocument();
$jdoc->setTitle('put the title here');
?>

Alternatively, you may use the "Meta Tager" action which can also help you set the "Page Title", "Meta" keys words or description easily.

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.

Comments:

You need to login to be able to post a comment.