Comments 2souma2014 started the conversationApril 28, 2017 at 9:24amHow can I disable the search button in the menu or even customize the search page and the search icon? 432Sergio repliedApril 28, 2017 at 9:26amHI! 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_icon() { remove_filter('wp_nav_menu_items', 'thegem_menu_item_search', 10); } add_action('init', 'thegem_child_init_icon'); If you’re happy with our theme, please rate us with 5 stars on Themeforest. It keeps us motivated! (How to rate). Regards Sergio Codex. Sign in to reply ...
How can I disable the search button in the menu or even customize the search page and the search icon?
HI!
pls. use following css:
or in the TheGem child theme add next code to functions.php file:
If you’re happy with our theme, please rate us with 5 stars on Themeforest. It keeps us motivated! (How to rate).
Regards Sergio Codex.