• Resolved jbellissimo

    (@jbellissimo)


    New to WP. I am looking to remove the author name and “No Comments” + icon from each blog post. Using Go theme.

    Author Name: I tried using the Hide/Remove Metadata plug-in, but that did not work.

    No Comments: I tried using a few different code snippets in the Additional CSS section, but nothing worked.

    Here is the most recent:
    span.meta-data__comments {
    display: none;
    }

    Can someone please assist?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey @jbellissimo,

    Thanks for reaching out!

    The following CSS code will hide the mentioned content:

    
    .post-author.meta-wrapper,
    .post-comment-link.meta-wrapper{
        display:none;
    }
    

    Let me know if this helps. ??

    Kind Regards,
    Milos

    Thread Starter jbellissimo

    (@jbellissimo)

    THANKS! Worked perfectly.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove “No Comments” and “Author” from Blog Post’ is closed to new replies.