Archived topic
Author "Biographical Info" Is Not Showing In The Author Page
1 reply · Started by Lelin on October 11, 2022
Hi,
I have added some info text about the author in the user settings. But it is not showing in the author page.
https://www.allaboutrazor.com/author/dennis/
Can not understand why it is happened! Please Help Me!
I have attached Biographical Info Screenshot.
https://drive.google.com/file/d/1uLhIecpX0exzhuLqhgVGFU3guDOVwcgh/view?usp=sharing
Hi there,
in your Customizer > Additional CSS you have this CSS rule:
body.archive header.page-header {
display: none;
}
Which is hiding the archive header, which is also hiding your author archive header.
If you want to hide the header on all other archives but keep it in view for authors then change the CSS to this:
body.archive:not(.author) header.page-header {
display: none;
}