• Resolved russhowepti

    (@russhowepti)


    Hi guys,
    Love this theme but I’m trying to figure out some CSS to hide post tags. They currently show above my article and at the very bottom of the article, both on the homepage feed and on the articles themselves.

    All help is appreciated, I’ve been getting nowhere so far!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator James Huff

    (@macmanx)

    Your categories are displayed above the post, for that add this via Additional CSS in the Customizer:

    .entry-categories-inner {
        display: none;
    }

    Your tags are displayed below the post, for that add this via Additional CSS in the Customizer:

    .post-tags.meta-wrapper {
        display: none;
    }

    At Appearance > Customize > Additional CSS add the following to remove author/date/comments:

    div.post-meta-wrapper.post-meta-single.post-meta-single-top {display:none;}

    If you want to hide the category and thew meta tags, use this instad:

    header.entry-header.has-text-align-center{display:none;}

    Thread Starter russhowepti

    (@russhowepti)

    Thannks @macmanx, that worked an absolute treat!

    Piggy-back question. If using Child Theme, should the code go in the customizer, or directly in the Child Theme?

    DISREGARD…just realized this post is about 2020. I’d delete if I could!

    • This reply was modified 4 years, 10 months ago by Edward A Sanchez.
    • This reply was modified 4 years, 10 months ago by Edward A Sanchez. Reason: Different theme being used....DISREGARD QUESTION...whoops!
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How Can I Hide Post Tags?’ is closed to new replies.