don't display tags

  • Unknown's avatar

    Hi,

    I was wondering how I could stop displaying the ‘tags, reactions and categorie’ I use for my blog.

    I already tried DASHBOARD – SETTINGS – READ – ENHANCED FEEDS and ‘unclicking’ the boxes for the tags, reactions and categorie.

    I already posted new articles but they still appear on my blog.

    Can you please help me?

    Kind regards,

    Yanna

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello there Yanna!

    You can hide these tags by using CSS code, as I see you’ve done to adjust other aspects of your theme.

    If you’d like to give this a try, click Appearance → Customize in your site’s Dashboard. Then, click CSS in your right-hand menu. In the CSS Revisions box, please paste the following underneath all existing text:

    p.entry-tags {
    visibility: hidden;
    }

    Then Save your changes.

    That should do the trick! If I can help in any other way, please drop me a line. Cheers :)

  • Unknown's avatar

    Hi,

    That was very helpful, thank you!

    The tags are hidden, just as I asked.

    Is there any way I can hide the ‘reactions’ and ‘category’ underneath all of the articles on my homepage as well?

    I would love to hear from you.

    Kind regards.

    Yanna

  • Unknown's avatar

    Hey Yanna,

    Add the following CSS:

    .post-meta .single-author-meta li {
    visibility: hidden;
    }

    .post-meta {
    margin: 0px;
    border-top: none;
    border-bottom: none;
    }

    Save those changes!

    Let me know how this works for you :) Thanks.

  • Unknown's avatar

    Hi,

    Thank you sooo much for helping me!
    I greatly appreciate your effort!!!

    I’m probably being very difficult right now, but is there any way to downsize the ‘white space’ after the ‘read more-link’?

    Kind regards,

    Yanna

  • Unknown's avatar

    Hi Yanna!

    Sure, no problem…

    Add this to your CSS Revisions box:

    .entry p {
    margin: 8px 0 0px 0;
    }

    Please add it BEFORE the other two CSS code items I provided. Then, Save your changes.

    Thank you so much!

  • The topic ‘don't display tags’ is closed to new replies.