Hello Perry,
I am really sorry for the delay of this reply as it is a weekend for us here. I am sorry but unfortunately right now this is not possible but if you really need to hack this, you can do so by editing the theme file, /components/com_easyblog/themes/default/blog.archive.php and locate the codes below,
<li id="entry-<?php echo $row->id; ?>" class="post-wrapper<?php echo !empty( $row->source ) ? ' micro-' . $row->source : ' micro-post';?>">
<time datetime="<?php echo $this->formatDate( '%Y-%m-%d' , $row->created ); ?>">
<?php echo $this->formatDate( $system->config->get('layout_dateformat') , $row->created ); ?>
</time>
<a href="<?php echo EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id='.$row->id); ?>"><?php echo $row->title; ?></a>
<?php if( $row->isFeatured ) { ?><b class="tag-featured"><?php echo Jtext::_('COM_EASYBLOG_FEATURED_FEATURED'); ?></b><?php } ?>
</li>
Replace it with,
<li id="entry-<?php echo $row->id; ?>" class="post-wrapper<?php echo !empty( $row->source ) ? ' micro-' . $row->source : ' micro-post';?>">
<time datetime="<?php echo $this->formatDate( '%Y-%m-%d' , $row->created ); ?>">
<?php echo $this->formatDate( $system->config->get('layout_dateformat') , $row->created ); ?>
</time>
<a href="<?php echo EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id='.$row->id); ?>"><?php echo $row->title; ?></a>
<?php if( $row->isFeatured ) { ?><b class="tag-featured"><?php echo Jtext::_('COM_EASYBLOG_FEATURED_FEATURED'); ?></b><?php } ?>
<?php echo $row->content;?>
</li>