Ok, check your mail. I've send you the plugin for easyblog that you need to put in:
administrator/components/com_comment/plugin/
one you put the folder there, then go to your backend -> extensions-> compojoomComment->settings. Create a new setting ->from the dropdown choose com_easyblog. Save it.
Then do the following changes
/components/com_easyblog/helpers/comment.php line 200
$file = JPATH_ROOT . DS . 'administrator' . DS . 'components' . DS . 'com_comment' . DS . 'plugin' . DS . 'com_easyblog' . DS . 'josc_com_easyblog.php';
if( JFile::exists( $file ) )
{
require_once($file);
$blog = JTable::getInstance( 'Blog' ,'Table' );
$blog->load( $blogId );
return CommentEasyBlog::output( $blog , array() , true );
}
and at line 300 add this
$file = JPATH_ROOT . DS . 'administrator' . DS . 'components' . DS . 'com_comment' . DS . 'plugin' . DS . 'com_easyblog' . DS . 'josc_com_easyblog.php';
if( JFile::exists( $file ) )
{
require_once($file);
return CommentEasyBlog::output( $blog , array() );
}
Don't forget to enable comments in easyblog and actually this should be all to rock & roll
If you can't manage to do the changes, then you'll have to wait a little bit for the next version of compojoomComment and easyblog. Then you won't have to upload files or change something in files
Cheers,
Daniel