Categories
Genesis Tutorials

Remove Archive Title Without Removing The Description

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:

title-and-description

After:

remove-title

Here’s the code for logged in members:

Related Tutorials

One reply on “Remove Archive Title Without Removing The Description”

Leave a Reply

Your email address will not be published. Required fields are marked *