Hello I’m using the free versione of The bEvent Calendar, Tribe Events.
I’ve resolved this problem with excerpt noty appeat:
In the main Events Calendar plugin folder (wp-contet/pligin), navigate to the src > functions > template-tags > general.php file and open it within your preferred text editor.
Navigate to line #1320 within that file. It should look like:
$excerpt = wp_trim_excerpt( $excerpt );
You can change that line to be:
$excerpt = TribeEvents::truncate(get_the_content(), 100);
where 100 is is the number of words that you would like the excerpt to be there.