Viewing 1 replies (of 1 total)
  • Pradnya

    (@pradnyajegstudio)

    Hi @fezguru

    You can try to make 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 we recommend making a child theme instead because the changes will not be lost if there is theme update).

    add_action('after_setup_theme', 'remove_title_tag', 11);
    function remove_title_tag() {
    	remove_theme_support( 'title-tag' );
    }
Viewing 1 replies (of 1 total)
  • The topic ‘2 Title Tags’ is closed to new replies.