• Last Ten

    (@last-ten)


    Hi Guys

    Can anyone please tell me how I can alter the coding to just display ‘categories’, and ‘leave a comment’ but remove all my tags from the post?

    I have added a plugin called WP Author, Date and Meta Remover which removes all metadata but I only want to remove the tags from the posts.

    Also can you tell me whereabouts I need to amend this code?

    I hope someone can help me.

    Thank you in advance.

    Peter

Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator Kathryn Presner

    (@zoonini)

    Hi Peter, unfortunately Parament places all the post’s meta information in a single tag with the class entry-meta so I don’t see a way to hide only the tags with CSS alone. For example:

    <div class="entry-meta">
    Posted in:
    <a rel="category tag" href="https://paramentdemo.wordpress.com/category/demo/">Demo</a>
    ,
    <a rel="category tag" href="https://paramentdemo.wordpress.com/category/uncategorized/">Uncategorized</a>
    . Tagged:
    <a rel="tag" href="https://paramentdemo.wordpress.com/tag/lorem-ipsum/">lorem-ipsum</a>
    .
    </div>

    You could hide both categories and tags with:

    .entry-meta {
      display: none;
    }

    Don’t edit the theme files directly, otherwise your changes will be overwritten every time the theme is updated to the latest version.

    An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.

    As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.

    If really you wanted to only display categories and not tags, you’d need to do this with a child theme, instead of CSS.

    Making a child theme means your changes won’t be overwritten when you update the theme. If you’re new to child themes, you can explore these guides:

    http://codex.wordpress.org/Child_Themes
    https://www.smashingmagazine.com/2016/01/create-customize-wordpress-child-theme/
    http://vimeo.com/39023468

    If you’re comfortable doing that, let me know and I can help with the specific code.

    Thread Starter Last Ten

    (@last-ten)

    Thanks Kathryn

    Excellent advice from you, I am going to work on some tuition with my child theme before I do anything.

    I have a feeling that you may have mentioned a while back that the Parament Theme would probably not be updated as it hasn’t been for a few years.

    Its a great little theme to be honest and it looks great.

    Thanks again for your support.

    Moderator Kathryn Presner

    (@zoonini)

    My pleasure!

    Thanks! 😉

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove tags on Posts’ is closed to new replies.