Remove category /tag from being visible on blog
-
I tried the below code, in my css field under custom desing, and saved, but yet I still see the tags and categories under my post on the blog. Am I doing something wrong? Is there a specific line is should start on?
The blog I need help with is: (visible only to logged in users)
-
-
Does this help?
Here is an example that will hide category links for posts on the Forever theme:
.entry-meta .cat-links {
display: none;
}
From: https://en.forums.wordpress.com/topic/hiding-tags-from-wordpress-theme-forever-without-css-customization?replies=2#post-1109209 -
Thanks!! It worked for the Forever theme. Would you know how to for the Reddle Theme? This I really needed it for,but changed themes minimize the cluttered look.
-
All CSS editing is theme specific editing. I don’t provide CSS editing support at all. I used Google search to find the answer for you I linked to above.
-
Disregard, TT is seemed to have worked for the Reddle them as well, you’re awesome, thanks for responding so soon!
-
Please provide the URL for the WordPress.com blog in question, with the CSS editing upgrade and wearing the Reddle theme, in the form of an active link starting with http://
re: Reddle
this will hide the tags on the posts.
.tag-links {
display: none;
}From: https://en.forums.wordpress.com/topic/how-to-hide-tags-in-reddle-theme?replies=4#post-1216620
-
@ithinkiwrite2, I see you have hidden the tags and categories with the following CSS in Reddle:
.entry-meta .cat-links { display: none; } .entry-meta .tag-links { display: none; }If you have any further questions, please let us know.
- The topic ‘Remove category /tag from being visible on blog’ is closed to new replies.