hi guys
a quick question.
I recently moved a site from the domain cfcnorge.com to cphfilm.no. Everything is fine except the old domain name is still showing up in the browser tab for some reason. I have changed the name on the general settings and everywhere else, and can’t see where that old info is coming from. Any ideas? see the site at http://www.cphfilm.no
thanks
Nancy
Hi Munford!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_title_tag','avia_new_title');
function avia_new_title() {
if(is_home()){
$title = get_bloginfo('name');
}
return $title;
}
Regards,
Yigit
OK thanks – but can you tell me why the new name is not showing up automatically?
I tried the code but it did not work…
??
thanks for taking a look
Nancy
Hey!
It could be some kind of server side caching as it works on your other pages.
Cheers!
Yigit
OK yes I see that – thanks. Nothing I can do about the server side caching…?
Hey!
You can contact your service provider and ask if they have such caching enabled.
If you have not changed title via custom code or hardcoded into your theme files, it should be some kind of caching.
Regards,
Yigit
thanks I will check into it