• Does anyone know if there’s a way to prevent tags from showing up under the post excerpts on the home, category, tag, archive, search, and author pages? I still want it to show up when viewing a particular post, but would like them to not show up in the places I mentioned.

    By the way the URL of my site is futbolpulse.com.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter danielwp

    (@danielwp)

    Nevermind, I got it. For those seeking the same result all you need to do is paste the following code into your CSS Editor:

    body.home .tag-links {
    	display: none;
    }
    
    body.category .tag-links {
    	display: none;
    }
    
    body.tag .tag-links {
    	display: none;
    }
    
    body.archive .tag-links {
    	display: none;
    }
    
    body.search .tag-links {
    	display: none;
    }

    I still have one more question though: Is there any way to decrease the amount of space between the end of each excerpt and the start of the featured image for the following post? Thanks!

    Great job posting it danielwp… Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing Tags From Home Page’ is closed to new replies.