Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter darristan

    (@darristan)

    Just found out there is a no-breadcrumb template and where to put a (!is_front_page) tag in child theme.

    Is there any possible I can remove this (https://i.imgur.com/Yz4uLne.png) spacing from menu to content if its a front page?

    Thanks in advance.

    Theme Author Stefan Brechbuehl

    (@pixelstrolch)

    Hi darristan,

    you’ve already written the solution. Add this into content-page.php:

    <?php if(!is_front_page()) : ?>
    <header class="entry-header">
    	<h1 class="entry-title"><?php the_title(); ?></h1>
    </header><!-- .entry-header -->
    <?php endif; ?>

    Cheers Stefan

    Thread Starter darristan

    (@darristan)

    Oh how can I missed this. Moving up will skip the header div. Thanks anyway! Great theme!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to remove breadcrumb and custom home's title’ is closed to new replies.