Page 1 of 1

[Resolved] blog description in browser title?

Posted: Mon Dec 01, 2008 3:05 pm
by ameo
it's only shows the "blog-title" - Mozilla Firefox

how can i make it show description too?

thanks

btw, using BP theme

Posted: Mon Dec 01, 2008 3:43 pm
by Don Chambers
That is just the <title> element, which changes depending on the page being viewed. In the file named index.tpl, you could change this:

Code: Select all

<title>{$head_title|@default:$blogTitle}{if $head_subtitle} - {$head_subtitle}{/if}</title>
to this:

Code: Select all

<title>{$head_title|@default:$blogTitle} - {$head_subtitle|@default:$blogDescription}</title>
I have not tested it, but I am fairly certain it will work.

Posted: Mon Dec 01, 2008 7:41 pm
by ameo
Thanks Don

worked like magic