Wordpress help with removing navigation bar

11 replies
  • WEB DESIGN
  • |
Hey guys!

My client and I would like to know if there is a way to get rid of the navigation bar that appears at the top of every page, :confused:

this is the website

So we would like to get rid off "Home » Concierge's Desk "

Thanks in advanced team!
#bar #navigation #removing #wordpress
  • Profile picture of the author wolfmmiii
    I've never seen that theme before but if there is no way to do it through the theme settings, you should be able to go into the header.php file of that theme and get rid of it.
    Signature
    Want a REAL Online Business That's Fun to Run?
    CLICK HERE FOR INFO
    {{ DiscussionBoard.errors[6302636].message }}
  • Profile picture of the author Robert Bleach
    I would just examine the element in Firebug and then "nodisplay" it in CSS.
    {{ DiscussionBoard.errors[6302912].message }}
  • Profile picture of the author Ryan Donrew
    I believe its the bread crumb no the menu, post your header.php code and ill tell you what to remove

    or just look for what ever says "breadcrumb"

    Ryan D.
    {{ DiscussionBoard.errors[6303058].message }}
  • Profile picture of the author imgeek2727
    You could always get a theme that blocks it out automatically, or alternatively you could use a plug in. S2member should do the trick, here is their site s2Member® | A powerful (free) membership plugin for WordPress®, it also has a ton of other great uses as well.
    {{ DiscussionBoard.errors[6303208].message }}
  • Profile picture of the author BreakingRetail
    Hey guys thanks for all the replies, i still wasn't able to get rid of the top navigation bar, but here is the header.php

    <!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset="<?php bloginfo( 'charset' ); ?>" />
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    <?php elegant_description(); ?>
    <?php elegant_keywords(); ?>
    <?php elegant_canonical(); ?>

    <?php do_action('et_head_meta'); ?>

    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

    <!--[if lt IE 7]>
    <link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/css/ie6style.css" />
    <script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/DD_belatedPNG_0.0.8a-min.js"></script>
    <script type="text/javascript">DD_belatedPNG.fix('img#logo, span.overlay, a.zoom-icon, a.more-icon, #menu, #menu-right, #menu-content, ul#top-menu ul, #menu-bar, .footer-widget ul li, span.post-overlay, #content-area, .avatar-overlay, .comment-arrow, .testimonials-item-bottom, #quote, #bottom-shadow, #quote .container');</script>
    <![endif]-->
    <!--[if IE 7]>
    <link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/css/ie7style.css" />
    <![endif]-->
    <!--[if IE 8]>
    <link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/css/ie8style.css" />
    <![endif]-->
    <!--[if lt IE 9]>
    <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
    <![endif]-->

    <script type="text/javascript">
    document.documentElement.className = 'js';
    </script>

    <?php wp_head(); ?>
    </head>
    <body <?php body_class(); ?>>
    <div id="wrapper">
    <div id="main_content"<?php if ( is_home() ) echo ' class="home_content"'; ?>>
    <header id="main_header">
    <div id="logo_area">
    <?php if ( ( = get_option('gleam_logo') ) && '' != ) { ?>
    <a href="<?php echo esc_url( home_url() ); ?>">
    <img src="<?php echo esc_url( ); ?>" alt="<?php echo esc_attr(get_bloginfo('name')); ?>" id="logo"/>
    </a>
    <?php } else { ?>
    <h1>
    <a href="<?php echo esc_url( home_url() ); ?>"><?php echo get_option('gleam_logo_text'); ?></a>
    </h1>
    <?php } ?>
    <p><?php echo esc_html( get_bloginfo('description') ); ?></p>
    </div> <!-- #logo_area -->

    <?php do_action('et_header_top'); ?>

    <nav id="main_menu">
    <?php
    = 'clearfix';
    if ( get_option('gleam_disable_toptier') == 'on' ) .= ' et_disable_top_tier';
    = '';
    if (function_exists('wp_nav_menu')) {
    = wp_nav_menu( array( 'theme_location' => 'primary-menu', 'container' => '', 'depth' => '1', 'fallback_cb' => '', 'menu_class' =>
    , 'echo' => false ) );
    }
    if ( == '') { ?>
    <ul class="<?php echo ; ?>">
    <?php if (get_option('gleam_home_link') == 'on') { ?>
    <li <?php if (is_home()) echo('class="current_page_item"') ?>><a href="<?php echo home_url(); ?>"><?php esc_html_e('Home','Gleam') ?></a></li>
    <?php }; ?>

    <?php show_page_menu(,false,false); ?>
    <?php show_categories_menu(,false); ?>
    </ul>
    <?php }
    else echo();
    ?>
    </nav>
    </header> <!-- end #main_header -->
    <div id="content" <?php body_class(); ?>>
    Signature

    "Try not to become a man of success but rather to become a man of value."Albert Einstein

    {{ DiscussionBoard.errors[6306505].message }}
  • Profile picture of the author Fahmzie
    Its Gleam theme from elegantthemes.

    If you want to remove all the breadcrumbs, you have to comment all the code inside /includes/breadcrumbs.php file

    Just put
    <!--
    and
    -->
    in the first and last line of code

    Hope helps
    {{ DiscussionBoard.errors[6306643].message }}
  • Profile picture of the author Istvan Horvath
    Originally Posted by BreakingRetail View Post

    My client and I would like to know if there is a way to get rid of the navigation bar ...
    My clients used to hire me because I knew WordPress and didn't have to ask for help in a forum. I used to ask questions before I had clients: in my learning period :rolleyes:
    Signature

    {{ DiscussionBoard.errors[6307112].message }}
  • Profile picture of the author lovboa
    Banned
    What's with all the complicating responses?
    Just delete this block of code:

    <nav id="main_menu">
    <?php
    = 'clearfix';
    if ( get_option('gleam_disable_toptier') == 'on' ) .= ' et_disable_top_tier';
    = '';
    if (function_exists('wp_nav_menu')) {
    = wp_nav_menu( array( 'theme_location' => 'primary-menu', 'container' => '', 'depth' => '1', 'fallback_cb' => '', 'menu_class' =>
    , 'echo' => false ) );
    }
    if ( == '') { ?>
    <ul class="<?php echo ; ?>">
    <?php if (get_option('gleam_home_link') == 'on') { ?>
    <li <?php if (is_home()) echo('class="current_page_item"') ?>><a href="<?php echo home_url(); ?>"><?php esc_html_e('Home','Gleam') ?></a></li>
    <?php }; ?>

    <?php show_page_menu(,false,false); ?>
    <?php show_categories_menu(,false); ?>
    </ul>
    <?php }
    else echo();
    ?>
    </nav>
    {{ DiscussionBoard.errors[6307137].message }}
    • Profile picture of the author BreakingRetail
      Originally Posted by lovboa View Post

      What's with all the complicating responses?
      Just delete this block of code:

      <nav id="main_menu">
      <?php
      = 'clearfix';
      if ( get_option('gleam_disable_toptier') == 'on' ) .= ' et_disable_top_tier';
      = '';
      if (function_exists('wp_nav_menu')) {
      = wp_nav_menu( array( 'theme_location' => 'primary-menu', 'container' => '', 'depth' => '1', 'fallback_cb' => '', 'menu_class' =>
      , 'echo' => false ) );
      }
      if ( == '') { ?>
      <ul class="<?php echo ; ?>">
      <?php if (get_option('gleam_home_link') == 'on') { ?>
      <li <?php if (is_home()) echo('class="current_page_item"') ?>><a href="<?php echo home_url(); ?>"><?php esc_html_e('Home','Gleam') ?></a></li>
      <?php }; ?>

      <?php show_page_menu(,false,false); ?>
      <?php show_categories_menu(,false); ?>
      </ul>
      <?php }
      else echo();
      ?>
      </nav>
      I tried this but it actually also took out the main menu which shows up in the front page here - http://www.plaitwrights.com/

      Thanks again!
      Signature

      "Try not to become a man of success but rather to become a man of value."Albert Einstein

      {{ DiscussionBoard.errors[6308893].message }}
  • Profile picture of the author BreakingRetail
    Originally Posted by Istvan Horvath View Post

    My clients used to hire me because I knew WordPress and didn't have to ask for help in a forum. I used to ask questions before I had clients: in my learning period :rolleyes:
    Really, that is what you have to input?

    I picked this as my first assignment in the internet marketing world. I'm doing this completely free for the client.
    Its good to do things for free sometimes especially when you know someone really cant afford YOU, I hope some day you get to feel the same satisfaction.

    What's with all the complicating responses?
    Just delete this block of code:

    <nav id="main_menu">
    <?php
    = 'clearfix';
    if ( get_option('gleam_disable_toptier') == 'on' ) .= ' et_disable_top_tier';
    = '';
    if (function_exists('wp_nav_menu')) {
    = wp_nav_menu( array( 'theme_location' => 'primary-menu', 'container' => '', 'depth' => '1', 'fallback_cb' => '', 'menu_class' =>
    , 'echo' => false ) );
    }
    if ( == '') { ?>
    <ul class="<?php echo ; ?>">
    <?php if (get_option('gleam_home_link') == 'on') { ?>
    <li <?php if (is_home()) echo('class="current_page_item"') ?>><a href="<?php echo home_url(); ?>"><?php esc_html_e('Home','Gleam') ?></a></li>
    <?php }; ?>

    <?php show_page_menu(,false,false); ?>
    <?php show_categories_menu(,false); ?>
    </ul>
    <?php }
    else echo();
    ?>
    </nav>
    Thanks I shall try that right now, thanked.
    Signature

    "Try not to become a man of success but rather to become a man of value."Albert Einstein

    {{ DiscussionBoard.errors[6308874].message }}

Trending Topics