| Server IP : 77.39.210.126 / Your IP : 216.73.216.203 Web Server : Apache System : Linux v00l0v-vmpcnews.sphostserver.com 4.18.0-553.124.4.el8_10.x86_64 #1 SMP Fri May 15 04:14:14 EDT 2026 x86_64 User : artecasarepresti ( 1022) PHP Version : 7.4.33 Disable Function : dl,passthru,proc_open,proc_close,proc_terminate,shell_exec,system MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/artecasarepresti/www/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>