Is there a reason you do not want to use Meta Options => Page Meta => Custom excerpt?
Is page builder active within those pages you see correctly in the feed?
We set the excerpt length here /uplift/swift-framework/core/sf-formatting.php
, the function is:
/* EXCERPT
================================================== */
if ( ! function_exists( 'sf_new_excerpt_length' ) ) {
function sf_new_excerpt_length( $length ) {
return 60;
}
add_filter( 'excerpt_length', 'sf_new_excerpt_length' );
}
You can test overriding this within your child theme functions.php
.
Lastly, do you have a staging site as it’s tricky to help with local installs?
Thanks,
David