Here is the current code being used:
<div id="nav" class="clearfix">
<a id="region-slider-prev" class="region-slider-control"></a>
<a id="region-slider-next" class="region-slider-control"></a>
<div id="nav-slider" class="event-slider">
<?php $featuredEvents = tribe_get_events( array('eventDisplay'=>'upcoming', 'tax_query' => array(array('taxonomy'=> 'tribe_events_cat', 'field'=>'slug','terms'=>'featured-events'))));
foreach($featuredEvents as $post) : setup_postdata($post); ?>
<div class="wbSlide-region">
<a href="<?php the_permalink(); ?>">
<?php
if (has_post_thumbnail()){
the_post_thumbnail('region-slider-size');
}
?></a>
<div class="event-info">
<h3><?php the_title();?></h3>
<div class="date"><?php echo get_post_meta($post->ID, 'event_dates', true);?></div>
<?php the_excerpt();?>
<a href="<?php the_permalink();?>">Learn More →</a>
</div>
</div>
<?php endforeach;?>
</div>
<div id="upcoming-events-list">
<h3>Upcoming Events</h3>
<?php
echo em_events();
?>
</div>
</div>
<div id="content-bottom" class="clearfix events-main">
<h2>Featured Upcoming Events<a href="/eventscalendar">View Full Events Calendar →</a></h2>
<div class="clearfix"></div>
<div id="featured-events-wrap">
<?php foreach($featuredEvents as $post) : setup_postdata($post); ?>
<a href="<?php the_permalink();?>"><article <?php post_class("floatleft archive") ?> id="post-<?php the_ID(); ?>">
<div class="archive-image-wrap">
<?php
if (has_post_thumbnail()) {
the_post_thumbnail('region-graphic-size');
} else {
echo '<div class="archive-image-wrap-empty">There is no thumbnail available for this resource.</div>';
}
?>
</div>
<div class="entry-content">
<h3><?php the_title(); ?></h3>
<div id="thecontent">
<?php the_excerpt(); ?>
</div>
</div>
</article>
</a>
<?php endforeach; wp_reset_postdata(); ?>
I need to work out how to change the call functions to referencing the data in the Event Manager Plugin rather than the The_Event_Calendar plugin.