[Resolved] blog description in browser title?

Random stuff about serendipity. Discussion, Questions, Paraphernalia.
Post Reply
ameo
Regular
Posts: 143
Joined: Fri Sep 26, 2008 4:13 am

[Resolved] blog description in browser title?

Post by ameo »

it's only shows the "blog-title" - Mozilla Firefox

how can i make it show description too?

thanks

btw, using BP theme
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:

Post 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.
=Don=
ameo
Regular
Posts: 143
Joined: Fri Sep 26, 2008 4:13 am

Post by ameo »

Thanks Don

worked like magic
Post Reply