Home › Forums › Gillion Theme › DELETE POST WRITER
Home › Forums › Gillion Theme › DELETE POST WRITER
Can I delete/hide the post writer name without deleting the time when it was published?
Hi @terminator99,
Thank you for your question.
You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.post-meta-content span.post-auhor-date > span .post-author,
.post-meta-content span.post-auhor-date {
font-size:0 !important;
}
Best regards,
Shufflehound team
Fantastic!
And the picture of the post auhtor int the post page?
Use below CSS code to remove post author image.
.post-meta-content span.post-auhor-date a img{
display: none !important;
}