• https://www.crackerboxpalace.org

    Home page looks good when you first launch the site. But if you go to another page – then back to “Home” using the menu, the top of the Home page says “Front Page” (which is what I labeled the category).

    I’m using latest posts for the Home Page only… all the other pages on the site are static. This is so my clients can keep the home page updated with news or whatever.

    But I don’t want the category name to appear at the top of the HOme page. How can I “turn it off” ??

    Thank you!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • This is somewhat of a guess since it may depend on the version of the theme generator used.

    Look in archive.php for these lines:

    if (is_category()) {
    
    						echo '<h4>'. single_cat_title( '', false ) . '</h4>';
    						echo category_description();
    
    					} elseif( is_tag() ) {

    and comment out the two ‘echo’ lines like this:

    if (is_category()) {
    
    						//echo '<h4>'. single_cat_title( '', false ) . '</h4>';
    						//echo category_description();
    
    					} elseif( is_tag() ) {
    Thread Starter lostdogs

    (@lostdogs)

    Yes! That worked!
    Thank you very much… I would never have found that myself.
    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove category name from top of page?’ is closed to new replies.