• Resolved ontop

    (@ontop)


    I created a website using this plugin and the theme Zeever and now I see multiple titles tag when I added the plugin Yoast SEO, how can I disable the title tag given automatically by the theme and the Gutenverse plugin?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Yoga

    (@yogajegstudio)

    Hi @ontop

    You can try making a child theme first and then paste this code inside the functions.php file inside the child theme (you can put the code inside the main theme’s functions.php file, but i recommend to make a child theme instead because the changes will not lost if there is theme update)

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

    Thread Starter ontop

    (@ontop)

    Got it, will try and let you now, thanks

    Thread Starter ontop

    (@ontop)

    The problem was solved with that code, thank you!

    Pradnya

    (@pradnyajegstudio)

    Glad we can help you. Let us know if you have other questions.

    Also, if you can spend your time. Would you like to give us a review here? It will mean a lot to us.

    Thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘My page shows multiple title tags’ is closed to new replies.