Howdy Stefan!
Good question. The excerpt length for events uses the same excerpt length as other default posts, so you could like use a filter to override the default number of words returned. Something like this in your theme (or child theme) functions.php file:
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
That will limit the number of words to 20, though you can set that to whatever you’d like.
Will this work for you? Please let me know. 🙂
Cheers,
Geoff