Tagged: homepage, page title, Yoast
Hi Kriesi
I am having a situation with Yoast and Enfold where, even though I changed my
Meta Description and Meta title with the Yoast tools on my homepage to manually
Homepage Title | Site Title
it still shows
SITE TITLE | HOMEPAGE TITLE
I tried adding this to my enfold-child/functions.php
add_filter(‘avf_title_tag’, ‘avia_change_title_tag’, 10, 2);
function avia_change_title_tag($title, $wptitle)
{
if(is_front_page()) {
$title = get_bloginfo(‘name’);
}
return $title;
}
Yet, still on the Google Search Results it still shows SITE TITLE: HOMEPAGE TITLE
Is there a way to fix this?
Thank you for your time.
Hey waveshaper,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?
Best regards,
Victoria