Hello. We found and removed featured image and metadata, because there was a link to the username (login)
*childtheme*/template-parts>/content-single.php
<?php
/**
* Template part for displaying single posts.
*
* @link https://codex.www.ads-software.com/Template_Hierarchy
*
* @package Acme Themes
* @subpackage Medical Circle
*/
$no_blog_image = '';
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('init-animate'); ?>>
<div class="content-wrapper">
<div class="image-wrap">
<?php
$sidebar_layout = medical_circle_sidebar_selection();
$no_blog_image = 'no-image';
?>
</div>
<div class="entry-content <?php echo $no_blog_image?>">
<?php
the_content();
wp_link_pages( array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'medical-circle' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
</div>
</article><!-- #post-## -->