//do_action( 'single_event_listing_start', 20);
    event_listing_meta_display();
    do_action('set_single_listing_view_count', $post);
    ?>
		
		<div class="col-md-12">
                             
            <!-- Event description column start -->                             
            <div class="col-md-8 text-justify"> 
              <div class="event-details">
                <h3 class="section-title"><?php 
    _e('Event Overview', 'gam-event-manager');
    ?>
</h3>  
                <img class="img-responsive img-center event-banner" src="<?php 
    echo get_event_banner();
    ?>
" />                              
                <?php 
    echo apply_filters('display_event_description', get_the_content());
    ?>
                
              </div>
            </div>                             
            <!-- Event description column end -->
                                                    
           <!-- Organizer logo, Contact button, event location, time and social sharing column start -->                       
            <div class="col-md-4 text-justify ">                            
                <?php 
    get_event_manager_template_part('content', 'single-event_listing-organizer');
    ?>
/**
 * get_event_type function.
 *
 * @access public
 * @param mixed $post (default: null)
 * @return void
 */
function get_event_type($post = null)
{
    $post = get_post($post);
    if ($post->post_type !== 'event_listing') {
        return;
    }
    $types = wp_get_post_terms($post->ID, 'event_listing_type');
    if ($types) {
        $type = current($types);
    } else {