I figured it out.
I added a template override for the blog.item.php file.
1. Copied the blog.item.php file from the Easyblog theme I am using (in my case vintage).
2. Created a com_easyblog folder in the html folder of my main template folder, Ex. /templates/YOUR_TEMPLATE/html/com_easyblog
3. Added the blog.item.php to that new folder, path looks like this: /templates/YOUR_TEMPLATE/html/com_easyblog/blog.item.php
4. I removed the hyperlink html from this line in the blog.item.php
<span class="blog-author">
<?php echo JText::_( 'COM_EASYBLOG_BY' );?>
<a href="<?php echo $row->blogger->getProfileLink(); ?>" itemprop="author"><?php echo $row->blogger->getName(); ?></a>
</span>
To look like this:
<span class="blog-author">
<?php echo JText::_( 'COM_EASYBLOG_BY' );?>
<?php echo $row->blogger->getName(); ?> </span>
Hope this helps someone needing the same.
To the masters of EasyBlog; Duplicate content is a huge issue these days and can really effect you negatively with Google. please look at adding ways to make sure that the only indexable content is the stuff on the Frontpage Blog Layout. That is really the only this that needs to be indexed. At least give us the options to turn items on/off
The print pages, blogger profiles (well they could is it was just the profile. the articles is what cause the problem there) categories, tags, etc. All of these items make it more difficult to rank.
May be necessary to adjust the com_easyblog plugin for Sh404sef too since this is probably the most popular URL rewriter. Anyway, just adding my 2 cents.
Thank you,
John