Anyone know how to change the title tag in the browser? I found the following code:
How do I get "Here is my title" to show something like {var:Read.name}?
<?php
$document =& JFactory::getDocument();
$document->setTitle("Here is my title");
$document->setDescription("Here my description");
?>
How do I get "Here is my title" to show something like {var:Read.name}?
use the PHP version:
$this->get("Read.name")
Like this?
<?php
$document =& JFactory::getDocument();
$document->setTitle("$this->get("Read.name")");
$document->setDescription("Here my description");
?>
no, remove the double quotes:
<?php
$document =& JFactory::getDocument();
$document->setTitle($this->get("Read.name"));
$document->setDescription("Here my description");
?>
You need to login to be able to post a reply.