Join GTS Technology Solutions and our Partners for an event you won’t forget! Enjoy gourmet bites, craft cocktails, live music, and check out the view of San Antonio from the Observation Deck! Thank you to our sponsors: Elastic, Armis, Ericsson, & Nexthink.
This invitation if for customers and participating sponsors only. Interested in sponsoring? Email marketing@gts-ts.com
add_shortcode('tec_event_location', function() {
// 1. Check if The Events Calendar is active to avoid errors
if ( ! function_exists('tribe_get_venue_id') ) {
return '';
}
// 2. Get the current Event ID
$event_id = get_the_ID();
// 3. Get the Venue ID linked to this event
$venue_id = tribe_get_venue_id($event_id);
// 4. If no venue is attached, return empty
if ( ! $venue_id ) {
return 'Online / No Location';
}
// 5. Get the address parts safely
$address = tribe_get_address($venue_id);
$city = tribe_get_city($venue_id);
$state = tribe_get_region($venue_id);
$zip = tribe_get_zip($venue_id);
// 6. Combine them into a single string for Outlook
// Result: "123 Main St, Austin, TX 78701"
$full_address = sprintf('%s, %s, %s %s', $address, $city, $state, $zip);
return $full_address;
});