Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter Jugal Thakkar

    (@jugalthakkar)

    I have removed the line using the Editor for now, I did not see any condition that uses the “Display Header Text” value before spitting the Header

    Go to Appearance/Customize
    Under Site Title and Tagline, remove text from Title.

    Thread Starter Jugal Thakkar

    (@jugalthakkar)

    Removing the title also removes it from the <title> tag in the <head> section. I do not want my page’s title to be changed.

    Count me in for this request. I think if you upload a logo, the Site Title should disappear from the page and be used as the alt text for the logo.

    Seems this is a common gripe on what is a lovely clean template.

    Only want header image to show and no text but turning it off does not do the job and still shows the two lines that show in the header design

    PLEASE have a look at this Mr developer – it is such a useable template otherwise

    Theme Author Frenchtastic

    (@titouanc)

    Hello,

    I’ll add an option that will allow you to show & hide the header text in the next theme update.

    Thanks for the feedback.
    Cheers!

    Theme Author Frenchtastic

    (@titouanc)

    Hello,

    The update has now been released.

    Thanks for your feedback (;

    Cheers!

    It seems you have done the opposite of the request. Unless I’m missing something, there is now a checkbox that removes the site description.

    I need to remove the site Title, because the title is already in my logo. The description is fine where it is.

    I think it’s a bug in your code:

    <?php if ( get_theme_mod( 'coeur_logo' ) ) : ?>
            <div class='site-logo'>
              <a href='<?php echo esc_url( home_url( '/' ) ); ?>' title='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>' rel='home'><img src='<?php echo esc_url( get_theme_mod( 'coeur_logo' ) ); ?>' alt='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>'></a>
              <h1 class="blog-title"><a href="<?php echo esc_url( home_url() ) ?>"><?php bloginfo('name'); ?></a></h1>
            </div>
          <?php else : ?>

    It should be:

    <?php if ( get_theme_mod( 'coeur_logo' ) ) : ?>
            <div class='site-logo'>
              <h1 class="blog-title"><a href='<?php echo esc_url( home_url( '/' ) ); ?>' title='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>' rel='home'><img src='<?php echo esc_url( get_theme_mod( 'coeur_logo' ) ); ?>' alt='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>'></a></h1>
            </div>
          <?php else : ?>

    Wrapping the logo in h1 tags is a personal preference, but removing the extra h1 line is the bug.

    Thanks for the template update 🙂

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Disabled Header Text’ is closed to new replies.