Hi Annette,
Thanks for reaching out!
There is not currently a way to do this from within the Events settings (the excerpts used in the photo and list views are generated in the same way as the excerpts for other post types on your site when there is no manual excerpt set – you can read more about how this works here).
For now, you can add the following to the functions.php file of your child theme to limit the word count just for photo view:
add_filter( 'excerpt_length', function( $length ) {
return function_exists( 'tribe_is_photo' ) && tribe_is_view('photo')
? 20
: $length;
}, 1000 );
If this is a feature that you would like to see added in the future, please do let us know over in our Feature Ideas Forum! This is what we use to gauge user interest in new features and help guide future development efforts.
Please let me know if you have any questions!
Thanks,
Jennifer