• I’m trying to work with my Vet who has an existing website. We won’t go into why I’m working on an alternative but I am.

    While somewhat experienced with web programming ( a couple of sites using raw php )I am new to WordPress.

    What I’d like to do is to remove the “little house” and associated page that appears on the navigation ( see her site ). I don’t see the good dr using this as a blog of any form and I’d like it gone. Suggestions??

Viewing 2 replies - 1 through 2 (of 2 total)
  • ideally, consider to create a child theme for the customization; http://codex.wordpress.org/Child_Themes

    in header.php of your (child) theme, find this section:

    <?php if ( !is_page_template('template-landing-page.php') ) { ?>
        <div class="menu-box">
          <a class="link-home" href="<?php echo esc_url( home_url( '/' ) ); ?>"></a>
    <?php wp_nav_menu( array( 'menu_id'=>'nav', 'theme_location'=>'main-navigation' ) ); ?>
        </div>
    <?php } ?>

    remove this line:

    <a class="link-home" href="<?php echo esc_url( home_url( '/' ) ); ?>"></a>

    you might get better theme specific replies when you post in the theme’s forum at https://wordpress.org/support/theme/brickyard#postform

    David_G

    (@questas_admin)

    You can remove it with css also:

    .menu-box .link-home {
    display: none;
    }
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Burn a little house.’ is closed to new replies.