Hi,
Thanks for using our plugins. I can help you out here.
There is no filter to modify the_excerpt() length.
However, there is a way to do it by editing the template.
To modify the list view template please follow our themer’s guide:
https://theeventscalendar.com/knowledgebase/themers-guide/
Then move and edit this file in your theme:
wp-content\plugins\the-events-calendar\views\list\single-event.php
On that file you want to edit this:
<?php the_excerpt() ?>
to something like to change modify the length:
<?php
$excerpt = get_the_excerpt();
$excerpt = substr( $excerpt , 0, 100);
echo $excerpt;
?>
You can change the amount to something you like by changing the 100.
Let me know how that works out.
Thanks
Please note per our terms of service we may take up to 24 hours to respond to each posting you make although we try to get it sooner then that.