Viewing 1 replies (of 1 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Part of that reason is because of add_theme_support( 'title-tag' ).

    What you can do is create a child theme and add:

    add_action( 'after_setup_theme', 'remove_extra_title', 11 );
    function remove_extra_title(){
        remove_theme_support( 'title-tag' );
    }

    To the functions file of your child theme. Alternatively, ( which I really hate to even write out ) is comment out the line ( add_theme_support( 'title-tag' ) ) in the theme. It will stop it from duplicating the title.

Viewing 1 replies (of 1 total)
  • The topic ‘Site name x2’ is closed to new replies.