Page 1 of 1

Removing specific author / author from blog posts

Posted: Thu Oct 03, 2019 8:14 am
by Cthomas3487
I would like to request a feature for past/already created blog posts.

I would like to be able to remove a specific author (example: a past employee) from previous blog posts,
or
I would like to be able to remove the author's option for blog posts altogether without having to go into each individual blog post to remove the author as this is inconvenient if I have over 50+ blog posts to sift through.

Re: Removing specific author / author from blog posts

Posted: Thu Oct 10, 2019 3:14 pm
by NoahBaldwin
Hello!

You can remove author sections from all blog posts using CSS. First, to remove the author section from the blog post itself, use the following CSS and class name:

Code: Select all

.authorship.well {
	display: none;
}
In order to remove the blog author from the collection of blog posts, use the following CSS and class name:

Code: Select all

.blogauthor {
	display:none;
}
Please add both of these CSS changes to your CSS file to remove author sections from all blogs.