Home Forums WoodMart support forum How to remove date, author, comments icon from blog everywhere

How to remove date, author, comments icon from blog everywhere

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #429300

    e911.tw
    Participant

    Dear Supporter,

    According to this topic
    https://xtemos.com/forums/topic/remove-date-author-comments-icon-from-blog-everywhere/#new-post
    I add the CSS code to my Theme Setting > Custom CSS in the “Global custom CSS” area and save options to remove the date, author, and reply.

    Please check those CSS codes below.
    body .wd-entry-meta .meta-date {
    display:none;
    }
    body .wd-entry-meta .meta-author {
    display:none;
    }
    body .wd-entry-meta .meta-reply {
    display:none;
    }

    But my blog post still has the Date shown on the Thumbnails, Main Picture, and the Single Post Page which still shows a “Leave a Comment” field on its below.

    How to remove those from my blog post totally?

    • This topic was modified 3 years ago by e911.tw.
    Attachments:
    You must be logged in to view attached files.
    #429337

    Luke Nielsen
    Member

    Hello,

    Please try to use the below code for hiding it.

    .blog-post-loop .wd-post-date,
    .single-post .wd-post-date {
        display: none;
    }

    If there’s anything else we can do, please get in touch.

    Kind Regards

    #429378

    e911.tw
    Participant

    Hi,

    This CSS code hide the “date”, but how to hide the Single Post Page below “Leave a Comment” field?

    #429427

    Luke Nielsen
    Member

    Hello,

    Please try to use the below one code for hiding the comments area. Paste it to the “Global Custom CSS” area in Theme Settings -> Custom CSS.

    .single-post .comments-area {
        display: none;
    }

    Kind Regards

    #429490

    e911.tw
    Participant

    Dear Supporter,

    It works, Thank you.

    #429768

    Luke Nielsen
    Member

    You are welcome!

    In case you need any additional help, I’d be more than happy to assist you.

    Have a good day!

    Kind Regards

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘How to remove date, author, comments icon from blog everywhere’ is closed to new replies.