Remove Author's name

Posted in: Newspaper
Post count: 145

I want to NOT show author’s name on the Home page https://gyazo.com/c63cbab801bfef2aa5c8499f8aa80b84
But I DO want the author’s name to be shown on the Post page https://gyazo.com/d0a7ccfd232110ec72386f08421a84bb

I can’t find this setting in the Theme panel as it either keeps the author name on both Home page and Post page or removes it from both of them. Pl advise. Thanks in advance.

Post count: 25

I am interested in this as well… Looking forward to the answer!

Post count: 23312

Hello

Please try the code below and add it in Theme panel->Custom CSS area.

The code is ->

.home .td-post-author-name {
display:none;
}

Hope this helps!

Thank you for the message!

Post count: 145

Thanks. That all worked great but I am unable to remove author’s name when browsing category posts without creating a specific page for a particular category. For example if I create a page called vedic-wisdom for a category posts called vedic-wisdom, I am able to remove author names using the code structure you provided but instead of creating a page, if I just create a link on the main menu called, say cow-protection, and make a category page for that, the code you provided doesn’t work (obviously). Can you help me remove author names on category pages? Samples here https://www.diigo.com/item/image/5glfd/aqge and https://www.diigo.com/item/image/5glfd/avu6

btw, i did try to find solution to this on the forum in case it’s already there but couldn’t find.

Post count: 23312

Hello Mayapur Voice,

Please try to use the code that I provided you above without .home because this code will be applied to entire website (posts page/homepage/category page).

Thank you for the message!

Post count: 145

It worked a charm but later on I realized it also wiped out author names on posts! I do need author names to appear on posts (meaning after clicking the thumbnail and opening the post for reading). I just would like to not show them on the category pages I mentioned yesterday. See if it’s possible.

Post count: 23312

Hello Mayapur Voice

If you want to hide the author name only for category pages you have to use the .category class to do it with CSS code. Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.category .td-post-author-name {
display:none;
}

If is not what you mean, please provide more details.

Thanks.

Viewing 7 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic.