Globe Life Field
734 Stadium Dr, Arlington, TX, United States
You're Invited! Register below to claim your ticket for a VIP experience to watch the Rangers play the Milwaukee Brewers! Join us in our suite to get to know your GTS sales reps! Go Rangers! **This invite is for invited customers and participating sponsors only.
Daikin Park
501 Crawford St, Houston, TX, United States
You're Invited! Register below to claim your ticket for a VIP experience to watch the Astros play the Rangers! Join us in our suite to get to know your GTS sales reps! Go Astros! **This invite is for invited customers and participating sponsors only.
Copendero Indoor Range
28075 Robinson Rd, Conroe, TX, United States
You're Invited! Join us in Houston from 11-5pm at Copendero Indoor Range to get to know the GTS team and our partners! Schedule: 11am-1pm: Shooting Range, 1pm-3pm: Lunch and Partner […]
LBJ Library Lawn
2313 Red River St, Austin, TX, United States
Join us for our annual tailgate to watch the UT Longhorns play the Vanderbilt Commodores on Saturday, November 1st. Get there early for our Mimosa and Bloody Mary Bar! Game time: 11am - This event does not get you into the game, but we will have lots of TV’s in our tent with the game playing! Thank you to our sponsor: Lenovo
Esquire Tavern
155 E Commerce St,, San Antonio, TX, United States
Join us for our annual TCEA Happy Hour in San Antonio at Esquire Tavern on the Riverwalk on Monday, Feb 2, 2026, from 5–8 PM. 🍹 Happy Hour is open to all customers—network, relax, and enjoy the evening! * TCEA registration is not required đź“§ Interested in sponsoring? Email marketing@gts-ts.com. Only sponsoring partners will be […]
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;
});