Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #850990

    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.

    #851094

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.