• our custom menu displays pages and some category pages, and when these category pages are displayed, it shows the category title at the begining, before any posts.
    Don’t want to see this title..But I have deleted and replaced so many pieces of code in different php files without success.
    Anyone who knows how to remove category pages titles that appear before the posts?

Viewing 31 replies (of 31 total)
  • How to Remove Category Titles When Using An Artisteer-created Theme:

    Don’t know if this was ever resolved, but here is a fix that isn’t a css fix (though I suggest you make a copy of original files so you can recover if something goes horribly awry).

    Artisteer creates a php file called archive.php.

    Open that file and scroll down until you find these line:

    echo '<h4>'. single_cat_title( '', false ) . '</h4>';
    echo category_description();

    Just comment them out like so:

    //echo '<h4>'. single_cat_title( '', false ) . '</h4>';
    //echo category_description();

    The category titles will no longer appear on the category pages.

Viewing 31 replies (of 31 total)
  • The topic ‘How to Remove category pages titles that appear before posts?’ is closed to new replies.