????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.135.224.139 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/pro/widgets/ |
Upload File : |
<?php /** * Events Pro Countdown Widget * This is the template for the output of the event countdown widget. * All the items are turned on and off through the widget admin. * There is currently no default styling, which is highly needed. * * Override this template in your own theme by creating a file at [your-theme]/tribe-events/pro/widgets/countdown-widget.php * * @package TribeEventsCalendarPro * */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } ?> <div class="tribe-countdown-timer tribe-clearfix"> <div class="tribe-countdown-days tribe-countdown-number"> <span class="fusion-tribe-counterdown-over">DD</span> <span class="tribe-countdown-under"><?php esc_html_e( 'days', 'tribe-events-calendar-pro' ); ?></span> </div> <div class="tribe-countdown-hours tribe-countdown-number"> <span class="fusion-tribe-counterdown-over">HH</span> <span class="tribe-countdown-under"><?php esc_html_e( 'hours', 'tribe-events-calendar-pro' ); ?></span> </div> <div class="tribe-countdown-minutes tribe-countdown-number"> <span class="fusion-tribe-counterdown-over">MM</span> <span class="tribe-countdown-under"><?php esc_html_e( 'min', 'tribe-events-calendar-pro' ); ?></span> </div> <?php if ( $show_seconds ) : ?> <div class="tribe-countdown-seconds tribe-countdown-number tribe-countdown-right"> <span class="fusion-tribe-counterdown-over">SS</span> <span class="tribe-countdown-under"><?php esc_html_e( 'sec', 'tribe-events-calendar-pro' ); ?></span> </div> <?php endif; ?> </div>