Order posts of a custom post type by the event date using FT Calendar Plugin

My guess is that the calendar date is some sort of meta field for the custom post type. I’d find that out and add that as a variable for my query.

You might be able to use something like this

<?php $loop = new WP_Query( array( 'post_type' => 'events', 'meta_key'=>'start_datetime',  'orderby' => 'meta_value', 'order' => ASC) ); while ( $loop->have_posts() ) : $loop->the_post(); ?>