Hi George,
Thanks for the reply. You were right and Alex Gore (one of the plugin authors) was able to help me out on their support page.
In case anyone else is looking for a solution to this, just add this code to functions.php:
add_filter( 'tribe_events_template_data_array', 'wpglobus_translate_event', 10, 3 );
function wpglobus_translate_event( $json, $event, $additional ) {
if ( class_exists('WPGlobus') ) {
$json['title'] = WPGlobus_Core::text_filter( $json['title'], WPGlobus::Config()->language );
}
return $json;
}
Thanks again,
Tim