Hello @sparofire,
Thank you for contacting Rank Math support.
You will have to add the following filters to your site if you don’t want to capitalize the social titles:
add_filter( "rank_math/opengraph/facebook/og_title", function( $content ) {
return ucfirst(strtolower($content));
});
add_filter( "rank_math/opengraph/twitter/twitter_title", function( $content ) {
return ucfirst(strtolower($content));
});
Here is how to add a filter to your site: https://rankmath.com/kb/wordpress-hooks-actions-filters/
Hope that helps. Let us know if you need any other assistance.