hide tags on the main page

  • Unknown's avatar

    Hi,

    I’m using the truly minimal theme and I’d like to hide the tags on posts on the main page. I just want to show the tags on the full post. Is it possible?

    Thak you in advance

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

  • Unknown's avatar

    Certainly.

    The following example will hide all of the post meta data just for posts on the home page:

    .home .entry-meta {
    	display: none;
    }
  • Unknown's avatar

    Hi, thanks for your answer.

    That’s not exactly what I was trying to do. I want to keep the date and all other information. I just want to hide the tags on the main page. Is It possible?

  • Unknown's avatar

    You can hide just the tags like this:

    .home .tags-links {
    	display: none;
    }

    But the separators will still be there.

    The date is totally separate from the “entry-meta” in my first example, but that example removed categories, comments and edit links.

  • The topic ‘hide tags on the main page’ is closed to new replies.