• Resolved TheHuntCuracao

    (@thehuntcuracao)


    Hello Paul,

    For my blog, I decided that I did not want to the Title to appear on my page. So I did not enter a title for the blog. Nonetheless that is something negative for SEO. Is there a way that I can enter a title and not make it show up?

    This is my blog and I want it to continue looking like this: Curacao Vacation Blog

Viewing 6 replies - 1 through 6 (of 6 total)
  • Theme Author Paul de Wouters

    (@pauldewouters)

    you can use display:none in the CSS on the title element

    Thread Starter TheHuntCuracao

    (@thehuntcuracao)

    Great to hear that it’s possible. Just a bit stuck though. Can you edit it in the theme CSS on WordPress? If not, how do you do it in style.css.

    Theme Author Paul de Wouters

    (@pauldewouters)

    #site-title {display:none;}
    #site-description {display:none}

    should work

    Hi, is there some way to show title bar only in homepage? Thank you Paul!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Use Paul’s CSS:

    #site-title {display:none;}
    #site-description {display:none}

    And just add:

    .home #site-title {display:block}

    Theme Author Paul de Wouters

    (@pauldewouters)

    you could also stop it from showing with php, in the header.php file

    replace
    <?php get_template_part( 'menu', 'primary' ); // Loads the menu-primary.php template. ?>

    with
    <?php if( is_front_page() ) get_template_part( 'menu', 'primary' ); // Loads the menu-primary.php template. ?>

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Removing the title’ is closed to new replies.