zeeDisplay theme has 2 menu areas.
I do not want to use the top menu, and just use the Main Menu.
How can I hide all traces of the top menubar?
Thanks
Peter
zeeDisplay theme has 2 menu areas.
I do not want to use the top menu, and just use the Main Menu.
How can I hide all traces of the top menubar?
Thanks
Peter
If you go into Appearances, then into editor and then to the header.php file, you need to find a section of code that looks like this:
<div id="top_navi">
<?php
// Get Top Navigation out of Theme Options
wp_nav_menu(array('theme_location' => 'top_navi', 'container' => false, 'echo' => true, 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'depth' => 0));
?>
</div>
All you then need to do is delete that code. Take care not to delete the similar section of code that controls the main nav bar. Hope this helped!
I want to use two menus.one is for normal users one is for another user role. How can I do that?
This topic has been closed to new replies.