Remove tags from featured image posts

Hi there,

I wanted to remove all tags from my posts. I was able to remove them on normal posts (via customiser, deselecting meta). However, tags continue to appear on the post slider and on full width image featured posts. How do I remove them all as well?
Another thing: how do I change the font size for post excerpts?

url: omiradouro.com.br
ethos stack

Thanks!

Hi there,

Nice website

try this:

.featured-meta {
display: none;
}

Hey, thanks!
However, that did not work for me.

Did you clean the cache?
If you don’t have a cache cleaner then download WP fastest Cache for free.
Install it and clean the cache then check again

Where did you add the css? to the page or the global custom css?

See the image - it works

so it must be your cache

Is the print from a mobile device? because on a mobile, tags don’t appear on the x-post slider, but appear o featured images. On the customiser, I tried the code and then i cleared the cache. But I still get tags on the x post slider and featured images on my desktop and on the featured images on mobile devices.

no the screenshot is from my iMac 27"
Have you tried a different browser because I believe my code is correct

@nuno1410

Hi,

You missed a closing bracket at the end of your Custom CSS.

Please replace the last part of the code that reads.

@media (max-width:480px){
h1,.h1{
font-size:24px;
}
h2,.h2{
font-size:22px;
}
h3,.h3{
font-size:20px;
}
h4,.h4{
font-size:18px;
}
h5,.h5{
font-size:16px;
}
.featured-meta {
display: none;
}
.x-post-slider {display: none; }

with this

@media (max-width:480px){
    h1,.h1{
          font-size:24px;
    }
    h2,.h2{
          font-size:22px;
    }
    h3,.h3{
          font-size:20px;
    }
    h4,.h4{
          font-size:18px;
    }
    h5,.h5{
          font-size:16px;
    }
}   /* this close bracket was missing */

.featured-meta {
    display: none;
}
.x-post-slider {
    display: none; 
}

Hope that helps.

Thank you @TheDude, thank you @paul.r, that did it!
I was also missing a "meta"on the x-post-slider code.
Should be:
.x-post-slider-meta {
display: none;
}

1 Like

Glad you were able to figure it out :slight_smile: