I had to add function.php to my child theme and input the following code
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 20);
Where “20” (I had to change both numbers) determines how many words it shows.
More info here