Hi, I can see the "Geocraft Theme" have only one Navigation Menu. Is there a way to have a Second Nav Menu? I would like to add it a the top of the page where are located the login... i hidded already? Thanks in Advance for your help Kriss
Hello Kriss, Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
Hey Kriss, add this to your functions file: PHP: // Regeristing new Menuregister_nav_menus( array('secondary' => __( 'Secondary Menu', 'CHILDTHEMENAME'),) ); Then add this to your theme, where you want the navigation to appear: PHP: <?php // footer menu wp_nav_menu( array('container_class' => 'menu-footer','theme_location' => 'secondary' ) ); ?> All the best.