it's only shows the "blog-title" - Mozilla Firefox
how can i make it show description too?
thanks
btw, using BP theme
[Resolved] blog description in browser title?
[Resolved] blog description in browser title?
Last edited by ameo on Mon Dec 01, 2008 9:22 pm, edited 1 time in total.
-
Don Chambers
- Regular
- Posts: 3657
- Joined: Mon Feb 13, 2006 2:40 am
- Location: Chicago, IL, USA
- Contact:
That is just the <title> element, which changes depending on the page being viewed. In the file named index.tpl, you could change this:
to this:
I have not tested it, but I am fairly certain it will work.
Code: Select all
<title>{$head_title|@default:$blogTitle}{if $head_subtitle} - {$head_subtitle}{/if}</title>Code: Select all
<title>{$head_title|@default:$blogTitle} - {$head_subtitle|@default:$blogDescription}</title>=Don=