| Server IP : 68.178.247.200 / Your IP : 216.73.217.108 Web Server : Apache System : Linux p3plzcpnl489463.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : x9dppmxs4rgd ( 8559391) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/x9dppmxs4rgd/public_html/wp-content/themes/grace-church/tribe-events/modules/meta/ |
Upload File : |
<?php
/**
* Single Event Meta (Venue) Template
*
* Override this template in your own theme by creating a file at:
* [your-theme]/tribe-events/modules/meta/venue.php
*
* @package TribeEventsCalendar
*/
if ( ! tribe_get_venue_id() ) {
return;
}
$phone = tribe_get_phone();
$website = tribe_get_venue_website_link();
?>
<div class="tribe-events-meta-group tribe-events-meta-group-venue">
<span class="info_under_google_map">
<?php do_action( 'tribe_events_single_meta_venue_section_start' ) ?>
<span class="author fn org"> <?php echo tribe_get_venue() ?> </span>
<?php if ( tribe_address_exists() ) : ?>
<span class="location">
<span class="tribe-events-address"><!-- <address> -->
<?php echo tribe_get_full_address(); ?>
<?php if ( tribe_show_google_map_link() ) : ?>
<?php echo tribe_get_map_link_html(); ?>
<?php endif; ?>
</span>
</span>
<?php endif; ?>
<?php if ( ! empty( $phone ) ): ?>
<span> <?php esc_html_e( 'Phone:', 'grace-church' ) ?> </span>
<span class="tel"> <?php echo ($phone) ?> </span>
<?php endif ?>
<?php if ( ! empty( $website ) ): ?>
<span> <?php esc_html_e( 'Website:', 'grace-church' ) ?> </span>
<span class="url"> <?php echo ($website) ?> </span>
<?php endif ?>
<?php do_action( 'tribe_events_single_meta_venue_section_end' ) ?>
</span>
</div>