Hi Russel,
Thanks for writing in! If you are using custom excerpt field then you can use your desired excerpts from there.
If you want to set the number of words for your excerpts then you can try placing this to your Child Theme‘s functions.php :
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
You can try changing the value 20 with your own words count.
Cheers!