steveshead
Forum Replies Created
-
Hey Dylan – did you get your issue sorted out?
No problem – glad I could help!
Try creating a menu in admin/appearance/menu – that might be why it’s not showing.
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?
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
In reply to: Widget page won't show, but only in non Genesis sitesHey 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
In reply to: Widget page won't show, but only in non Genesis sitesI 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.
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