Comments 2elreynoso started the conversationOctober 28, 2016 at 11:25pmHello, Im trying to remove the search field from the menu but I havent foundit in the themes options. Can you help me indicating were I can do that?Thanks in advance! 7,092Oliver repliedOctober 31, 2016 at 11:35amHI! pls. use following css: li.menu-item.menu-item-search { display: none !important; } or in the TheGem child theme add next code to functions.php file: function thegem_child_init() { remove_filter('wp_nav_menu_items', 'thegem_menu_item_search', 10); } add_action('init', 'thegem_child_init'); Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliver Sign in to reply ...
Hello, Im trying to remove the search field from the menu but I havent foundit in the themes options. Can you help me indicating were I can do that?
Thanks in advance!
HI!
pls. use following css:
or in the TheGem child theme add next code to functions.php file:
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver