Remove author from posts

Hi,
How to remove the authors name, that is displayed in a post next to the date and the category?

Thanks in advance!

Hey there

Let me see it, please provide a direct URL of the page and I will generate custom css

Thanks

1 Like

Hey,

Thanks for the quick reply. Direct URL is https://feuerwehrwoerth.de/wordpress/index.php/2021/09/28/heissausbildung-fuer-atemschutzgeraetetraeger/

Thanks for your help!

Hey there

You may use this css code:

.single .byline {
display: none;
}
1 Like

Thanks, works perfect thanks!

Is it possible to remove the author from the landingpage as well? https://feuerwehrwoerth.de/wordpress/

Solved by using this. Removes the author from landingpage and the article pages.

.single .byline,
.group-blog .byline {
display: none;
}

That’s nice :slight_smile:

I will mark this case as a resolved

1 Like