Removing entry meta information from blog and single post

I wonder how I can remove all data on top of the post except comments? I found way how to remove all fields, but I want “comments” to remain there. I would much appreciate your help.

Regards

You can remove all other information except comment link from entry meta for Dazzling theme by using this simple CSS via Appearance >> Theme Options >> Other >> Custom CSS

.entry-meta .posted-on,
.entry-meta .byline,
.entry-meta .cat-links  {
  display: none;
}

Let me know if you need any further assistance with this.