• Resolved hippiev02

    (@hippiev02)


    Hey everyone, I would like some help with removing the home option in the main menu. I googled and found suggestions that removing this :

    • /”>Home
    • This works if I’m viewing another page, the “home” option isnt shown in the menu but when i open the website on a new tab or page then there are two home buttons.

      Please help me out with as I am not too sure how to do it.. the header.php file is as follows :

      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
      <?php /* Fusion/digitalnature */
        if(get_option('fusion_meta')<>'') {
         if (is_home()) {
        	$metakeywords = get_option('fusion_meta');
         } else if (is_single()) {
        	$metakeywords = "";
        	$tags = wp_get_post_tags($post->ID);
        	foreach ($tags as $tag ) {
        	  $metakeywords = $metakeywords . $tag->name . ", ";
        	}
         }
        }
      ?>
      <html xmlns="http://www.w3.org/1999/xhtml" <?php // language_attributes('xhtml'); // -> generates invalid markup :( ?>>
      
      <head profile="http://gmpg.org/xfn/11">
      <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
      <?php if($metakeywords<>'') { ?>
      <meta name="keywords" content="<?php echo $metakeywords; ?>" />
      <meta name="description" content="<?php bloginfo('description'); ?>" />
      <?php } ?>
      
      <title><?php wp_title('&laquo;', true, 'right'); ?><?php bloginfo('name'); ?></title>
      
      <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
      <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
      <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
      <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />
      
      <?php
        print '<style type="text/css" media="all">'.PHP_EOL;
        print '@import "'.get_bloginfo('stylesheet_url').'";'.PHP_EOL;
      
        if(get_option('fusion_sidebarpos')=='left')
          print '@import "'.get_bloginfo('template_url').'/options/leftsidebar.css";'.PHP_EOL;
      
        if(get_option('fusion_header')=='user') {
          if(get_option('fusion_headerimage')<>'')
             print '#page-wrap2{ background: transparent url('.get_option('fusion_headerimage').') no-repeat center top; }'.PHP_EOL;
          if(get_option('fusion_headerimage2')<>'')
              print '#page-wrap1{ background: transparent url('.get_option('fusion_headerimage2').') repeat-x center top; }'.PHP_EOL;
         }
      
        else if(get_option('fusion_header')=='user2') {
          print '#page-wrap2{ background: #'.get_option('fusion_headercolor').'; }'.PHP_EOL;
          print '#page-wrap1{ background: none; }'.PHP_EOL;
        }
      
        $usercss = get_option('fusion_css');
        if($usercss<>'') print $usercss;
      
        print '</style>'.PHP_EOL;
      ?>
      
      <!--[if lte IE 6]>
      <script type="text/javascript">
      /* <![CDATA[ */
         blankimgpath = '<?php bloginfo('template_url'); ?>/images/blank.gif';
       /* ]]> */
      </script>
      <style type="text/css" media="screen">
        @import "<?php bloginfo('template_url'); ?>/ie6.css";
        body{ behavior:url("<?php bloginfo('template_url'); ?>/js/ie6hoverfix.htc"); }
        img{ behavior: url("<?php bloginfo('template_url'); ?>/js/ie6pngfix.htc"); }
      </style>
      <![endif]-->
      
      <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
      <?php if(get_option('fusion_jquery')<>'no') { ?>
       <?php wp_enqueue_script('jquery'); ?>
       <?php wp_enqueue_script('fusion',get_bloginfo('template_url').'/js/fusion.js'); ?>
      <?php } ?>
      
      <?php wp_head(); ?>
      
      <?php if(get_option('fusion_jquery')<>'no') { ?>
      <script type="text/javascript">
      /* <![CDATA[ */
       jQuery(document).ready(function(){
        // body .safari class
        if (jQuery.browser.safari) jQuery('body').addClass('safari');
      
        // layout controls
        <?php if(get_option('fusion_controls')<>'no') { ?>
         jQuery("#layoutcontrol a").click(function() {
           switch (jQuery(this).attr("class")) {
      	   case 'setFont' : setFontSize();	break;
      	   case 'setLiquid'	: setPageWidth();	break;
      	 }
      	 return false;
          });
         // set the font size from cookie
         var font_size = jQuery.cookie('fontSize');
         if (font_size == '.7em') { jQuery('body').css("font-size",".7em"); }
         if (font_size == '.95em') { jQuery('body').css("font-size",".95em"); }
         if (font_size == '.8em') { jQuery('body').css("font-size",".8em"); }
      
         // set the page width from cookie
         var page_width = jQuery.cookie('pageWidth');
         if (page_width) jQuery('#page').css('width', page_width);
        <?php } ?>
      
        jQuery('#secondary-tabs').minitabs(333, 'slide');
      
        if (document.all && !window.opera && !window.XMLHttpRequest && jQuery.browser.msie) { var isIE6 = true; }
        else { var isIE6 = false;} ;
        jQuery.browser.msie6 = isIE6;
        if (!isIE6) {
          initTooltips({
      		timeout: 6000
         });
        }
        tabmenudropdowns();
      
        // some jquery effects...
        jQuery('#sidebar ul.nav li ul li a').mouseover(function () {
         	jQuery(this).animate({ marginLeft: "4px" }, 100 );
        });
        jQuery('#sidebar ul.nav li ul li a').mouseout(function () {
          jQuery(this).animate({ marginLeft: "0px" }, 100 );
        });
        // scroll to top
        jQuery("a#toplink").click(function(){
          jQuery('html').animate({scrollTop:0}, 'slow');
        });
      
       });
      
       /* ]]> */
      </script>
      <?php } ?>
      
      </head>
      <body <?php if (is_home()) { ?>class="home"<?php } else { ?>class="<?php echo $post->post_name; ?>"<?php } ?>>
        <!-- page wrappers (100% width) -->
        <div id="page-wrap1">
          <div id="page-wrap2">
            <!-- page (actual site content, custom width) -->
            <div id="page"<?php if(is_page_template('page-3col.php')) { ?> class="with-sidebar2"<?php } else if(!is_page_template('page-nosidebar.php')) { ?> class="with-sidebar"<?php } ?>>
      
             <!-- main wrapper (side & main) -->
             <div id="main-wrap">
              <!-- mid column wrap -->
          	<div id="mid-wrap">
                <!-- sidebar wrap -->
                <div id="side-wrap">
                  <!-- mid column -->
          	    <div id="mid">
                    <!-- header -->
                    <div id="header">
                      <?php if(get_bloginfo('description')<>'') { ?><div id="topnav" class="description"> <?php bloginfo('description'); ?></div><?php } ?>
      
                      <?php
                      // logo image?
                      if(get_option('fusion_logo')=='yes' && get_option('fusion_logoimage')) { ?>
                      <a id="logo" href="<?php bloginfo('url'); ?>/"><img src="<?php print get_option('fusion_logoimage'); ?>" title="<?php bloginfo('name');  ?>" alt="<?php bloginfo('name');  ?>" /></a>
                      <?php } else { ?>
                      <h1 id="title"><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1>
                      <?php }  ?>
      
                      <!-- top tab navigation -->
                      <div id="tabs">
                       <ul>
                       <?php
                        if((get_option('show_on_front')<>'page') && (get_option('fusion_topnav')<>'categories')) {
                         if(is_home() && !is_paged()){ ?>
                          <li id="nav-homelink" class="current_page_item"><a href="<?php echo get_settings('home'); ?>" title="<?php _e('You are Home','fusion'); ?>"><span><span><?php _e('Home','fusion'); ?></span></span></a></li>
                         <?php } else { ?>
      
                        <?php
                         }
                        } ?>
                       <?php
                         if(get_option('fusion_topnav')=='categories') { echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a$2><span><span>$3</span></span></a>', wp_list_categories('show_count=0&echo=0&title_li='));  }
                         else { echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a$2><span><span>$3</span></span></a>', wp_list_pages('echo=0&orderby=name&title_li=&')); }
                        ?>
                       </ul>
                      </div>
                      <!-- /top tabs -->
      
                    </div><!-- /header -->
Viewing 2 replies - 1 through 2 (of 2 total)
  • Please don’t post huge chunks of code here. For larger blocks of code, use the WordPress pastebin. It makes life easier for everyone.

    Try removing:

    <li id="nav-homelink" class="current_page_item"><a href="<?php echo get_settings('home'); ?>" title="<?php _e('You are Home','fusion'); ?>"><span><span><?php _e('Home','fusion'); ?></span></span></a></li>

    Thread Starter hippiev02

    (@hippiev02)

    That worked like a charm! Thank you so much!

    I’m a first time wordpress user and I’m loving the community feel this place has!

    Cheers guys..!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove Home’ is closed to new replies.