Hi,
Thanks for using our plugins. I can help out here.
With 3.11 we introduced the ability to add multiple organizers to an event.
We have updated coding in this file:
the-events-calendar\src\views\modules\meta\organizer.php
Using this coding might work for you:
<?php $organizer_ids = tribe_get_organizer_ids();
foreach ( $organizer_ids as $organizer ) {
if ( ! $organizer ) {
continue;
}
?>
<span class="org">
<?php echo tribe_get_organizer( $organizer ) ?>
</span >
<?php
} ?>
Let me know if that works for you.
Thanks