Hello!
Trying to add the WordPress search function to show up as an option in a Wordpress Menu. I added the following to the functions.php child:
add_filter( 'wp_nav_menu_items','add_search_box', 10, 2 );
function add_search_box( $items, $args ) {
$items .= '<li>' . get_search_form( false ) . '</li>';
return $items;
}
It does show up in the menu but it’s not letting me interact with it or type anything in. Seems to be conflicting with something in Pro? Any ideas as to what I should add?