Hello Summer Sale!
Exclusive season-opening discount on TheGem theme.
Limited time offer.

Okay
  Public Ticket #1151867
Disable Search in the Menu
Closed

Comments

  •  2
    souma2014 started the conversation

    How can I disable the search button in the menu or even customize the search page and the search icon?

  •  444
    Sergio replied

    HI!

    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.