Title: steveshead's Replies | WordPress.org

---

# steveshead

  [  ](https://wordpress.org/support/users/steveshead/)

 *   [Profile](https://wordpress.org/support/users/steveshead/)
 *   [Topics Started](https://wordpress.org/support/users/steveshead/topics/)
 *   [Replies Created](https://wordpress.org/support/users/steveshead/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/steveshead/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/steveshead/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/steveshead/engagements/)
 *   [Favorites](https://wordpress.org/support/users/steveshead/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twelve] Search bar in the main menu OR in a container div containing both in floats](https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats/)
 *  [steveshead](https://wordpress.org/support/users/steveshead/)
 * (@steveshead)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats/page/2/#post-3333096)
 * Hey Dylan – did you get your issue sorted out?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twelve] Search bar in the main menu OR in a container div containing both in floats](https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats/)
 *  [steveshead](https://wordpress.org/support/users/steveshead/)
 * (@steveshead)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats/page/2/#post-3333092)
 * No problem – glad I could help!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twelve] Search bar in the main menu OR in a container div containing both in floats](https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats/)
 *  [steveshead](https://wordpress.org/support/users/steveshead/)
 * (@steveshead)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats/#post-3333090)
 * Try creating a menu in admin/appearance/menu – that might be why it’s not showing.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twelve] Search bar in the main menu OR in a container div containing both in floats](https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats/)
 *  [steveshead](https://wordpress.org/support/users/steveshead/)
 * (@steveshead)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats/#post-3333088)
 * Hmm – I’ve used this a few times with no issue. Are you using a menu built in
   the admin panel, or just the default menu?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twelve] Search bar in the main menu OR in a container div containing both in floats](https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats/)
 *  [steveshead](https://wordpress.org/support/users/steveshead/)
 * (@steveshead)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats/#post-3333084)
 * I found this on the web, and currently use it on a test site. This will add a
   search box to all menus, if you have more than just the primary. This goes in
   the functions.php by the way.
 *     ```
       /**
        * Add a search bar to the navigation menu.
        *
        * @since Twenty Twelve 1.0
        */
       function menu_search($items){
           $search = '<li class="search">';
           $search .= '<form method="get" id="searchform" action="/">';
           $search .= '<label for="s" class="assistive-text">Search</label>';
           $search .= '<input type="text" class="field" name="s" id="s" placeholder="Search" />';
           $search .= '<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />';
           $search .= '</form>';
           $search .= '</li>';
   
           return $items . $search;
       }
       add_filter('wp_nav_menu_items','menu_search');
       ```
   
 * If you have more than one navigation menu I’ve found the easiest way to remove
   it from unwanted menus is to use CSS. For instance I have a header widget with
   a custom menu in it, but I don’t want the search function in there. I used this
   CSS:
 *     ```
       #headerWidget .search {
            display: none;
       }
       ```
   
 * I’m not an expert in PHP so I find the above the easiest way to remove something
   like that. Feel free to use, or not as the case may be.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Widget page won't show, but only in non Genesis sites](https://wordpress.org/support/topic/widget-page-wont-show-but-only-in-non-genesis-sites/)
 *  Thread Starter [steveshead](https://wordpress.org/support/users/steveshead/)
 * (@steveshead)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/widget-page-wont-show-but-only-in-non-genesis-sites/#post-3290377)
 * Hey Andrea – nice to see you on other forums also! 🙂
 * I had not thought that through until I had this issue the other day. Thanks for
   confirming though.
 * Steve
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Widget page won't show, but only in non Genesis sites](https://wordpress.org/support/topic/widget-page-wont-show-but-only-in-non-genesis-sites/)
 *  Thread Starter [steveshead](https://wordpress.org/support/users/steveshead/)
 * (@steveshead)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/widget-page-wont-show-but-only-in-non-genesis-sites/#post-3290373)
 * I found the issue, and hope this will help anyone else that sees this issue. 
   I ‘network deactivated’ Genesis Tabs and now my widget page is fully loading 
   again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Contact Form] – You do not have sufficient permissions to access this page.](https://wordpress.org/support/topic/wp-contact-form-you-do-not-have-sufficient-permissions-to-access-this-page/)
 *  [steveshead](https://wordpress.org/support/users/steveshead/)
 * (@steveshead)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/wp-contact-form-you-do-not-have-sufficient-permissions-to-access-this-page/#post-1138434)
 * Same issue here – I upgraded the plugin and now I get “You do not have sufficient
   permissions to access this page” for all of the links in the control panel that
   pertain to this plugin. All other plugins seem to work fine – the site is up 
   and stable and the products show just fine on the site. I’ve tested the process
   all the way to paying. So, something changed in the latest release that’s blown
   out permissions perhaps?
 * Oh – I paid for the Gold Cart but can’t get to that screen either. :p

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