Remove Tags from Blog

Im trying to remove the tags on the blog page and after reading through the forum i tried these:

.blog footer.entry-footer.cf {
display:none;
}

.x-integrity .post .entry-footer {
display: none;
top: -99999em;
visibility: hidden;
}

But as you see in the pic both leave the gap. How can i remove them completely?

Thanks
Rena

Hey Rena,

Thank you for reaching out to us. The code you’re using is correct you only need to refresh the page after adding the code

.blog .entry-footer.cf {
    display: none;
}

Try refreshing the page and it should work as expected. Let us know how this goes!

perfect thanks, how would i also remove them from the archives pages? http://2e6.274.myftpupload.com/category/tips-tricks/

Hi again,

To remove the tags from the archives as well, simply replace the previous code with the following one:

.blog .entry-footer.cf,
.archive .entry-footer.cf {
    display: none;
}

Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.