HI @yaelduckwen !
Currently there’s no option to show the organizers for an event through a shortcode option. Since there can be multiple organizers, some may want to add links to view events organized by each organizer, etc, this would require some customization.
With the pro version of The Events Calendar Shortcode & Block, you can take one of the designs and easily customize it to add in the organizer name(s). For example with the Default design:
https://eventcalendarnewsletter.com/events-calendar-shortcode-pro-options/#customize-default
Then you can add something like this if you just have one organizer where you want the name to appear:
<?php echo tribe_get_organizer(); ?>
or something like this if you might have multiple:
<ul class="ecs-organizers">
<?php foreach ( tribe_get_organizers( false, -1, true, ['event' => get_the_ID() ] ) as $organizer ): ?>
<li><?php echo $organizer->post_title; ?></li>
<?php endforeach; ?>
</ul>
Hope that helps!