Ok I got the search functionality working by commenting out some code in my theme’s functions.php, now I just need to figure out how to get the menu to show
/*
function gt_search_filter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','gt_search_filter');
*/