I’ve found a solution which works for the excerpt in pages:
function my_add_excerpts_to_pages() {
add_post_type_support('page', 'excerpt');
}
add_action('init', 'my_add_excerpts_to_pages');
Also the excerpt length can be adjusted with less code via the functions.php with
function custom_excerpt_length( $length ) {
return 200;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
if someone is also looking for this.
I think this ticket can be closed 🙂