Hello There!
Hope you are doing good!
You can increase Excerpt Length from Appearance >> Customize >> Theme options >> Blog options >> Excerpt Length
– If you wish to remove Excerpt Length completely then you have to add the below code in the theme functions.php file
add_action( 'wp', function(){
if ( is_home() || is_category() || is_tag() || is_author() || is_date() || is_search() ) {
remove_filter( 'excerpt_length', 'pt_magazine_implement_excerpt_length');
}
},20 );
Hope this helps!
Have a great day ahead!
Regards,
Team ProDesigns