How to hide comments on Blogger already excluded

When we comment on Blogger in a post, and then erase, it erases the comment, not the record of most who commented, to see a message stating "This post has been removed by the author", which is very annoying, since we can not more to see the comment to register it, to remove this problem follow the tutorial below:


1) Login to Blogger (blogger.com)

2) Go Layout/Design-> Edit HTML-> Check "Expand Widget Templates" box

3) Look for the following words using the CTRL + F keys:

<b:loop values='data:post.comments' var='comment'>
After the above add the following snippet:

<b:if cond='data:comment.is Deleted'>
<b:else/>
4) Now look just below:
<b:include data='comment' name='commentDeleteIcon'/>
the following excerpt:
</b:loop>
And before it add the following:
</b:if>
5) Save the changes and ready.