Yes I did but couldnt find it there. I'm trying to change the title that appears in the browser bar up the top...think I might be able to do it in the Language Editor, but not sure this will definately work for all pages...
Permalink Reply by ravi on September 30, 2008 at 2:20pm
Paste the code below in the 'Analytics' box of your 'Manage' page:
x$(document).ready(function() {
url = document.URL;
if (url == 'http://yoursiteurl') {
title = "Your chosen title";
x$('title').html(title);
}
});
[Replace 'yoursiteurl' and 'your chosen title' as appropriate]
Thanks for this....but can you please confirm if this just changes the title after the "actual" title loads, or does it permanently change the title. i.e will google index the title I put in the javascript or the actual title?
Permalink Reply by ravi on October 2, 2008 at 1:35am
Hi Phil,
The change will be reflected only on Javascript capable browsers. So, Google bot will not see this changed title, but only the title served from server-side.
If, for SEO purposes, you want to change the title at the server-side (assuming you have source code access), make the following change to 'widgets/index/templates/embed/header.php:
Find the line "<title><%= $title %></title>" in the above file, and change it to "<title>Your chosen title</title>". With this, 'Your chosen title' becomes visible to Google and other bots as well.
Permalink Reply by Nick on September 8, 2009 at 10:02pm
I am also interested in altering the title bar so that it will be optimized for SEO...
It seems like this can just be done in the Network Information section of the Manage tab. However I would rather not change the name of my network to some keywords, just so that I can have them placed first in my title bar!