Home Forums WoodMart support forum Hide Meta on blog post featured image

Hide Meta on blog post featured image

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #376544

    immolib
    Participant

    Hi
    I would like to hide the meta date “Published by” and the “Date” on each post.
    How can i do this ? Custom CSS
    It seems that the following code work

    body .wd-entry-meta .meta-author {
    display:none;
    }
    body .wd-entry-meta .meta-date {
    display:none;
    }

    Is that ok ?

    #376556

    Luke Nielsen
    Keymaster

    Hello,

    Please try to use this one code to hide the author and the date. Enter it to the “Global custom CSS” area that is in Theme Settings -> Custom CSS.

    .blog-post-loop .entry-meta-list .meta-author,
    .blog-post-loop .post-date,
    .single-post .post-single-page .meta-author,
    .single-post .post-date{
        display: none;
    }

    If you have any more questions or come across any other issues, let me know, I’ll be happy to help.

    Kind Regards

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