Remove metatags on Rosalie blog posts

  • Unknown's avatar

    Is there a way to remove the metatags (author, category, tags and comments) that show up on each blog post, between the title and the text?

    Our blog is http://thewoodspa.wordpress.com.

    Thanks in advance!

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

  • Unknown's avatar

    Hi there,

    I’m not sure if you want to hide the tags everywhere, so I give you three options! ;)

    This will hide all the meta tags on both the front page and single pages:

    .entry-meta {
    	display: none;
    }

    This will hide the meta tags on all single pages but not on the front page:

    .single .entry-meta {
    	display: none;
    }

    And this will hide all the meta tags on the front page but not on single pages:

    .single .entry-meta {
    	display: none;
    }

    I hope this helps!

    Best regards,

    Michael

  • The topic ‘Remove metatags on Rosalie blog posts’ is closed to new replies.