????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.107 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.eu/wp-content/themes/Avada/tribe-events/ |
Upload File : |
<?php
/**
* Single Event Template
* A single event. This displays the event title, description, meta, and
* optionally, the Google map for the event.
*
* Override this template in your own theme by creating a file at [your-theme]/tribe-events/single-event.php
*
* @package TribeEventsCalendar
*
*/
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
$events_label_singular = tribe_get_event_label_singular();
$events_label_plural = tribe_get_event_label_plural();
$event_id = get_the_ID();
?>
<div id="tribe-events-content" class="tribe-events-single vevent hentry">
<!-- Notices -->
<?php
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(); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<div class="fusion-events-featured-image">
<div class="hover-type-<?php echo Avada()->settings->get( 'ec_hover_type' ); ?>">
<!-- Event featured image, but exclude link -->
<?php echo tribe_event_featured_image( $event_id, 'full', false ); ?>
<?php Avada_EventsCalendar::render_single_event_title(); ?>
</div>
<?php else : ?>
<div class="fusion-events-featured-image fusion-events-single-title">
<?php Avada_EventsCalendar::render_single_event_title(); ?>
<?php endif; ?>
</div>
<!-- Event content -->
<?php do_action( 'tribe_events_single_event_before_the_content' ); ?>
<div class="tribe-events-single-event-description tribe-events-content entry-content description">
<?php the_content(); ?>
</div>
<!-- .tribe-events-single-event-description -->
<?php do_action( 'tribe_events_single_event_after_the_content' ); ?>
<!-- Event meta -->
<?php do_action( 'tribe_events_single_event_after_the_meta' ); ?>
</div> <!-- #post-x -->
<?php
avada_render_social_sharing( 'events' );
?>
<?php
if ( get_post_type() == Tribe__Events__Main::POSTTYPE && tribe_get_option( 'showComments', false ) ) {
add_filter( 'comments_template', 'add_comments_template' );
function add_comments_template() {
return Avada::$template_dir_path . '/comments.php';
}
comments_template();
}
?>
<?php endwhile;
?>
<!-- Event footer -->
<div id="tribe-events-footer">
<!-- Navigation -->
<h3 class="tribe-events-visuallyhidden"><?php printf( __( '%s Navigation', 'the-events-calendar' ), $events_label_singular ); ?></h3>
<ul class="tribe-events-sub-nav">
<li class="tribe-events-nav-previous"><?php tribe_the_prev_event_link( '%title%' ) ?></li>
<li class="tribe-events-nav-next"><?php tribe_the_next_event_link( '%title%' ) ?></li>
</ul>
<!-- .tribe-events-sub-nav -->
</div>
<!-- #tribe-events-footer -->
</div><!-- #tribe-events-content -->