Hi,
Thanks for using our plugins. I can help out here.
To modify the List Widget you want to follow our themer’s guide:
https://theeventscalendar.com/knowledgebase/themers-guide/
To move and edit this file in your theme:
events-calendar-pro/src/views/pro/widgets/modules/single-event.php
Move to here:
/yourtheme/tribe-events/pro/widgets/modules/single-event.php
Our coding to show multiple organizers looks like this:
$organizer_ids = tribe_get_organizer_ids();
foreach ( $organizer_ids as $organizer ) {
if ( ! $organizer ) {
continue;
}
?>
<dd class="fn org">
<?php echo tribe_get_organizer( $organizer ) ?>
</dd>
<?php
}
So you can add that in the file above where you would like it to display.
Let me know if you have any follow up questions.
Thanks