PassMark Logo
Home » Forum

Joomla code to shorten search results titles

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • David
    Administrator
    • Dec 2004
    • 4714

    #1

    Joomla code to shorten search results titles


    A customer sent in this useful code to shorten Joomla headers. It removes the site description from the meta title and adds a ZOOMTITLE tag in the <head> section of the HTML code for Zoom to find..

    <?php $mydoc =& JFactory::getDocument();$mytitle = $mydoc->getTitle();echo '<meta name="ZOOMTITLE" content="',str_replace("TEXT TO REMOVE FROM TITLE GOES HERE","",$mytitle),'">'; ?>
Working...