HEX
Server: Apache/2.4.25
System: Linux ion14 4.9.0-8-amd64 #1 SMP Debian 4.9.144-3.1 (2019-02-19) x86_64
User: (10087)
PHP: 7.4.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,system, exec, shell_exec, passthru, popen, proc_open
Upload Files
File: /home/www/web115/wordpress/wp-content/themes/osmosis/tribe-events/single-event.php
<?php
/**
 * Single Event Template
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( '-1' );
}

$event_id = get_the_ID();
if ( class_exists( 'Tribe__Events__Main' ) ) {
	$post_type = Tribe__Events__Main::POSTTYPE;
} else {
	$post_type = TribeEvents::POSTTYPE;
}
?>
<div id="grve-event-area">

	<!-- Notices -->
	<?php
		//Since v4.0
		if ( function_exists( 'tribe_the_notices' ) ) {		
			tribe_the_notices();
		} else {
			tribe_events_the_notices();				
		}
	?>

	<?php while ( have_posts() ) :  the_post(); ?>
		<div id="post-<?php the_ID(); ?>" <?php post_class('grve-single-post'); ?>>
			<div id="grve-single-media">
				<!-- Event featured image, but exclude link -->
				<?php echo tribe_event_featured_image( $event_id, 'grve-image-fullscreen', false ); ?>
			</div>

			<div id="grve-post-content">
				<?php grve_print_event_simple_title( $event_id ); ?>
				<!-- Event content -->
				<?php do_action( 'tribe_events_single_event_before_the_content' ) ?>
				<?php the_content(); ?>

				<?php grve_single_event_links(); ?>

				<!-- Event meta -->
				<?php do_action( 'tribe_events_single_event_before_the_meta' ) ?>
				<?php tribe_get_template_part( 'modules/meta' ); ?>
				<?php do_action( 'tribe_events_single_event_after_the_meta' ) ?>
			</div>
		</div>
		<?php grve_print_header_item_event_navigation('grve-nav-wrapper-default'); ?>
		<?php if ( get_post_type() == $post_type && tribe_get_option( 'showComments', false ) ) comments_template() ?>
	<?php endwhile; ?>

</div>