</div> </div> </div> </div> <?php } ?> <!-- Video popup box section end --> <?php do_action('single_event_listing_button_end'); ?> <!-- Event Ticket start--> <h3 class="section-title"><?php _e('Ticket Information', 'gam-event-manager'); ?> </h3> <ul class="when-where"> <li class="event-ticket">#<?php echo get_event_ticket_option(); ?> </li> </ul> <!--Event Ticket End--> <!-- Event Location and Time start--> <h3 class="section-title"><?php _e('When & Where', 'gam-event-manager'); ?>
{ $video = get_organizer_video($post); $filetype = wp_check_filetype($video); // FV Wordpress Flowplayer Support for advanced video formats if (shortcode_exists('flowplayer')) { $video_embed = '[flowplayer src="' . esc_attr($video) . '"]'; } elseif (!empty($filetype['ext'])) { $video_embed = wp_video_shortcode(array('src' => $video)); } else { $video_embed = wp_oembed_get($video); } $video_embed = apply_filters('display_organizer_video', $video_embed, $post); if ($video_embed && $echo) { echo '<div class="organizer_video">' . $video_embed . '</div>'; } else {