How to Hide tags

  • How can I hide the tags and the categories from my blog posts ?

    All the tags I used are listed on top of the articles. I have the rosalie theme

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

  • Hey alicecloutier!

    It looks as if you’ll need to change the CSS. This is only possible if you have the WordPress Premium or Business Plan.

    If you have either, you can customize the CSS.

    After examining the code, you’ll need to customize the “.tag-links” and “.categories-links-index” classes in the CSS for the Rosalie Theme.

    For the CSS in the Rosalie Theme it should be as follows:

    .entry-meta .tag-links {
        display: none;
    }
    
    .entry-meta .categories-links-index {
        display: none;
    }

    Let me know if this works or if you need anymore help. If not, enjoy your day! :D

  • The topic ‘How to Hide tags’ is closed to new replies.