Remove search from primary menu

There are several ways to remove search from primary menu but I prefer this one. Add this line on code in child theme `functions.php` inside setup function.

`
/* Remove search from primary menu. */
add_filter( ‘mina_olen_show_search’, ‘__return_false’ );
`