Remove Tags from Posts
-
Hi,
Can anyone help me with removing tags from individual posts? I am using the Snaps theme?
Thank you in advance
The blog I need help with is: (visible only to logged in users)
-
Hi,
To remove a tag from a post click the small ‘x’ next to a tag. See here for more tag-related info: https://en.support.wordpress.com/posts/tags/
-
Sorry, I meant how do I hide tags so that they don’t appear at the end of my posts. However, I think I already figured it out.
-
-
-
Well I hid the tags at the bottom already. I used CSS:
.entry-meta {
clear: both;
color: #999;
display: none;
font-size: 11px;
letter-spacing: .5px;
padding: 4px 0;
position: relative;
text-transform: uppercase;
}The problem is that it also erased the dates of each post. Can you help me restore the dates?
-
Can you change “display: none;” back to whatever it was so it all shows up again? .entry-meta is the overall class, but there may be specific distinct sub-classes for the date and tag, thus you could hide just the sub-class for the tag. If you display all the meta-info again we can take a look and see if there are indeed separate classes/id’s.
-
@shinnola
Remove the CSS you added above, and add only the following:.entry-meta.meta-tags { display: none; }Let us know if that’s also not what you’re looking for.
For future reference, for CSS help it’s best to post directly in the CSS Customization forum. That improves your chances that the staff and volunteers who offer CSS support will see your thread, meaning you’ll get better help faster :)
https://en.forums.wordpress.com/forum/css-customization#postform -
-
- The topic ‘Remove Tags from Posts’ is closed to new replies.