Hello Rene,
I'm sorry that was my mistake, i have help you apply another fixes in your file, please have a check.
JoomlaFolder\components\com_easyblog\themes\default\blog.item.comment.php
LINE 15
<?php if( $system->config->get('main_comment') && $this->getParam( 'show_comments' ) ) { ?>
Replace with
<?php if( $system->config->get('main_comment') && $this->getParam( 'show_comments' ) && $row->allowcomment ) { ?>
JoomlaFolder\components\com_easyblog\themes\default\blog.read.php
LINE 59
<?php if( $system->config->get('main_comment') && $blog->totalComments !== false && $this->getParam( 'show_comments' ) ){ ?>
Replace with
<?php if( $system->config->get('main_comment') && $blog->totalComments !== false && $this->getParam( 'show_comments' ) && $blog->allowcomment ){ ?>