I first used WP Extend Search plugin and when that didn’t work I used the following code in my functions.php
function filter_search($query) {
if ($query->is_search) {
$query->set('post_type', array('post', 'page', 'tribe_events'));
};
return $query;
};
add_filter('pre_get_posts', 'filter_search');