How can I remove all data on top of the post excepct number of comments

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

Add this code to Theme Options - Other - Custom CSS and it will help you to remove post date and author name.

.entry-meta .posted-on, 
.entry-meta .byline {
  display: none !important;
}

Let me know if there is anything else.

Work pefrectly.

Thank You