This code removes the archive title from one or more archives and only displays the description. You could easily use CSS with display: none;
like this:
.category-1 .archive-title {
display: none;
}
However, you might prefer a PHP solution where you can use conditional tags.
Before:
After:
Here’s the code for logged in members:
Genius! Thank you so much.