Hi Vink,
The [cs_content_seo]
is a new feature to make texts and other information visible from 3rd party plugins. It should be automatically removed once the excerpt is generated, it’s usually use for sharing description or meta description.
This means the sharing feature that’s currently in your site is not utilizing the get_excerpt()
where usually the short description is pulled.
Would you mind providing your FTP login credentials as well? I like to try something first, then I may add this as a bug once confirmed. I tried the free version of jetpack, but seems need to connect it first to Wordpress.com as I’m seeing different setup.
I like to remove this for testing
cornerstone\includes\integrations\conflict-resolution.php:
if ( defined( 'JETPACK__VERSION' ) ) {
remove_filter( 'the_content', 'sharing_display', 19 );
remove_filter( 'the_excerpt', 'sharing_display', 19 );
add_filter( 'sharing_show', '__return_false', 9999 );
}
Thanks!