Hi @emgb_520
Thanks for reaching out. Let me help you with this one.
Yes, it is possible to achieve this through template override. However, it may cause each event to take up an excessive amount of space as descriptions are typically lengthy. It would be comparable to including all the modals in the calendar.
If you’ve decided to do this, you can try overriding this template the-events-calendar/src/views/v2/month/calendar-body/day/calendar-events/calendar-event/title.php
by copying it to [your-theme]/tribe/events/v2/month/calendar-body/day/calendar-events/calendar-event/title.php
and add the code snippet after line 34
<?php
echo $event->description;
?>
As always, please test it first on a staging version of your site before applying it to your live site. This is to avoid unnecessary downtime.
Let me know how it goes.