Hii philippe09270,
Firstly create a child theme using plugin – https://ww.wp.xz.cn/plugins/orbisius-child-theme-creator/
Now copy home-blog.php file and paste it into child theme directory.
Go to child theme directory -> open home-blog.php file and see the below code at line no. 49 –
<ul class="enigma_blog_thumb_date">
<li><i class="fa fa-user"></i><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php echo get_the_author(); ?></a></li>
<li><i class="fa fa-clock-o"></i>
<?php if ( ('d M y') == get_option( 'date_format' ) ) : ?>
<?php echo get_the_date('F d ,Y'); ?>
<?php else : ?>
<?php echo get_the_date(); ?>
<?php endif; ?>
</li>
<li><i class="fa fa-comments-o"></i><?php comments_popup_link( '0', '1', '%', '', '-'); ?></li>
</ul>
replace it with below code and save the file –
<ul class="enigma_blog_thumb_date">
<li><i class="fa fa-user"></i><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php echo get_the_author(); ?></a></li>
<li><i class="fa fa-comments-o"></i><?php comments_popup_link( '0', '1', '%', '', '-'); ?></li>
</ul>
Thanks.
Thank you +++++++++++++++++++++++
Your Welcome,
Let us know for further query.