I would like to remove the category title or tag from my individual posts on my archive pages. I have already succeeded in removing the tags from the homepage and archive page header but they still show up on the individual posts (they are in a red font). So the posts always have the category "Latest Post" next to the actual headline, for instance. I am using the Newsliner theme if that helps. Thanks
I would like to remove the category title or tag from my individual posts on my archive pages. I have already succeeded in removing the tags from the homepage and archive page header but they still show up on the individual posts (they are in a red font). So the posts always have the category "Latest Post" next to the actual headline, for instance. I am using the Newsliner theme if that helps. Thanks
To expand on my comment above and Dan's answer the following may help you.
Also see my previous answer for a similar question here: Prevent WordPress from giving each post a number
Steps for hiding a particular css element are reasonably simple.
Now log in to your Dashboard and select "Appearance" followed by "Customize".
You should see an option called "Additional CSS". This allows you to override specific css tags and make other changes to the css styles.
Add the following code and click "Publish" to remove the element you want hidden.
.archive-entry-title {display:none;}
Note the leading dot, it is important.
Refresh the page in your browser and confirm the result was what you expected.
This method is useful for modifying your theme without the need for editing style sheets or other files associated with your theme.
You can use this method to change other css elements as long as you correctly identify them beforehand. Mistakes are easily undone by removing your css additions.
Find the css selector and target it with display : none;
Alternatively, copy your themes archive.php template to your child theme and remove the template tags referencing the category and category title, then save.