It complete removes both the author section and comments section of posts so that you don’t see them. You put this code in Appearance > Edit CSS.
Yes, I found a fix. The nice makers of the theme I use told me use the code below in the CSS. Posting it for anyone else that needs it, it removes the comments and author completely.
.author,
.author-info,
#comments {
display: none !important;
}