You can make small modification in comments template and show this link. Do something like:
Open file /com_jcomments/tpl/default/tpl_comment.php and change line:
<?php
if ($this->getVar('comment-show-homepage') == 1) {
?>
<a class="author-homepage" href="<?php echo $comment->homepage; ?>" rel="nofollow" title="<?php echo $comment->author; ?>"><?php echo $comment->author; ?></a>
<?php
} else {
?>
<span class="comment-author"><?php echo $comment->author?></span>
<?php
}
?>
with
<?php
if ($comment->profileLink != '') {
?>
<a class="author-homepage" href="<?php echo $comment->profileLink; ?>" rel="nofollow" title="<?php echo $comment->author; ?>"><?php echo $comment->author; ?></a>
<?php
} else {
?>
<span class="comment-author"><?php echo $comment->author?></span>
<?php
}
?>
And don't forget to install & publish Avatar plugin
