8 replies
  • WEB DESIGN
  • |
At the top of my WP blog there is like an active home and about button and then further down there is a home button and a dark un-catagorized button I don't want them across the very top I would like them to go down below the logo but don't know how to move them or get rid of the ones under the logo. Any ideas

If you want here is the link

Make Money Online Tips

Thanks Scott
#fix
  • Profile picture of the author yestyle
    Banned
    You can add show_option_none='' to wp_list_categories to remove it
    or In wp-includes search in category-template.php.
    'show_option_all' => '', 'show_option_none' => __('No categories'),
    {{ DiscussionBoard.errors[8416490].message }}
  • Profile picture of the author phanthuong1990
    thank you for sending useful information

    ________________________________________

    Health (sức khỏe) is gold
    {{ DiscussionBoard.errors[8416647].message }}
  • Profile picture of the author wolfe655
    I did not get this to work any help would be great! I could not even find this, wp_list_categories
    {{ DiscussionBoard.errors[8436989].message }}
  • Profile picture of the author David V
    Maybe you could clarify a little.
    You have 2 menu locations: one at the very top, and one below the logo.
    Menu 1
    LOGO
    Menu 2

    You said you don't want them across the top, but below the logo...
    so, are you trying to move the entire bar, or just have the links below the logo and eliminate the top links?

    The reason I ask is because you then said this:
    "don't know how to move them or get rid of the ones under the logo".

    But you said you wanted to get rid of the top?

    Maybe clear this up specifically what your trying to do.
    {{ DiscussionBoard.errors[8437068].message }}
  • Profile picture of the author wolfe655
    Actually I think I would like to get rid of the ones under the logo and leave the home and about up in the green section above the logo. I think most of the Nav will be done from the sidebars.
    {{ DiscussionBoard.errors[8437303].message }}
    • Profile picture of the author David V
      Originally Posted by wolfe655 View Post

      Actually I think I would like to get rid of the ones under the logo and leave the home and about up in the green section above the logo. I think most of the Nav will be done from the sidebars.
      First, as with many themes, if you do not assign a menu to a menu location, the default will be to place the top level pages there in the menu.
      Your theme is doing this.

      Go to the sidebar menu under "Appearance" then click "menus".

      Create 2 menus.

      The first will be for the top. Call it whatever you want
      "Main Menu"
      Create a second menu, call it what you want.
      "Submenu".

      Now, assign whatever pages you want to the top menu navigation.

      Next leave the "submenu" you created just blank.

      Now on the site you will see no menu items in the submenu.

      Your could also comment it out. You'll need to open up the "header.php", go to line 106 to 122 and comment out the menu#2 like so:
      Code:
      			<div class="outer">
      				<div id="navcontainer">
      					<!--<?php
                          if(function_exists('wp_nav_menu')) {
                                  wp_nav_menu( 'theme_location=menu_2&menu_id=nav&container=&fallback_cb=menu_2_default');
                              } else {
                                  menu_2_default();
                              }
                              
                              function menu_2_default()
                              {
                                  ?>
                                  <ul id="nav">
                                      <li <?php if(is_home()) { echo ' class="current-cat" '; } ?>><a href="<?php bloginfo('url'); ?>">Home</a></li>
              						<?php wp_list_categories('depth=3&exclude=1&hide_empty=0&orderby=name&show_count=0&use_desc_for_title=1&title_li='); ?>
              					</ul>
                                  <?php
                              }
                          ?>-->
      				</div>
      			</div>
      Edit: Keep in mind if you comment it out, the next time you update the theme it will return to default.
      {{ DiscussionBoard.errors[8437578].message }}
  • Profile picture of the author design89
    im not really sure the option within your theme. there should be a setting somewhere.. here are a few things to try..

    1. click on themes > menues > delete the second menu if is there..

    2. go to menumatic.css and find #nav and change display:block; to display:none;
    {{ DiscussionBoard.errors[8437539].message }}
  • Profile picture of the author wolfe655
    Ok Got to quit for now! Will give it a shot when I can Thanks.
    {{ DiscussionBoard.errors[8437554].message }}

Trending Topics