• I tired inserting the following codes in the CSS and they do remove everything including the comments. How can I maintain the comments on the posts? This is what I tried:

    .entry-meta .byline, .entry-meta  bn
    .entry-meta { display: none; }

    and

    .entry-meta {
    display: none !important;
    }
    

    My site is http://www.essentialcruising.com

    Thanks for any advice.

Viewing 6 replies - 1 through 6 (of 6 total)
  • @mstess

    All you need is

    .comment-meta .comment-metadata { display: none; }

    Thread Starter mstess

    (@mstess)

    Thanks salsaturation. That had no effect. Any other suggestion?

    It seems I either get just the byline removed with the date and comments left, or everything disappears. I only want the comments to show. I do not need the byline or date.

    Thanks for any other suggestions.

    @mstess

    I looked at your site and the dates have gone… also what do you mean by byline? Do you mean the title eg ‘8 thoughts on “Advantages of Cruising to Cuba”’

    Thread Starter mstess

    (@mstess)

    Yes, but the comments also disappeared with the date. That is the problem. I do want the comments to remain.

    Byline is the same as author.

    Thanks again.

    @mstess

    I can’t see comments on your site but I have checked on the theme demo and the comment text is in a div names ‘comment-content’ and it is not inside the ‘comment-metadata’ div so the code gave you cannot have resulted in the comment text being hidden

    SO by byline you mean getting rid of ‘Joseph Scott says:’ for example?

    If so, then the below code should take care of both and leave the comment intact
    .comment-author, .comment-metadata { display: none; }

    Thread Starter mstess

    (@mstess)

    Appreciate your help, even though I could not resolve the problem, but found an alternate solution.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove date but not comments from post’ is closed to new replies.