Removing author name and category
-
AuthorPosts
-
benforta
MemberHi there.
Anemone is looking good on my site, thanks.
I am the only author and all posts are in a single category, so I don’t want author name or category displayed, not on single posts, or the and search pages. Can you suggest how to repress these?
Thanks.
Ben
The blog I need help with is: (visible only to logged in users)
designorbital
Theme AuthorHi,
Please try the following CSS snippets./* Search Page */ .search .entry-meta-header-top { display: none; } .search .entry-meta-header-bottom ul li:first-child { display: none; } /* Single Post */ .single .entry-meta-site-hero ul li:first-child { display: none; }
Thanks
Thanks, that works (other than it leaves the . that was between the author and the date).
Can you provide the equivalent CSS for doing the same to the posts page?
Thank you.
designorbital
Theme AuthorHi,
Please try the following CSS snippets./* Search Page Remove Dot */ .search .entry-meta-header-bottom ul li:before{ display: none; } /* Posts Page */ .blog .entry-meta-header-top { display: none; } .blog .entry-meta-header-bottom ul li:first-child, .blog .entry-meta-header-bottom ul li:before { display: none; }
Thanks
Much closer. :-)
See this URL: https://forta.com/2019/05/06/adobe-spark-edu-examples/
Notice that there is still a . before the date.Also, would like to do the same on this page, remove author and .
https://forta.com/tag/spark/Thanks so much.
designorbital
Theme AuthorHi,
Please try the following CSS snippets./* Single Post Dot Remover */ .single .entry-meta-site-hero ul li:before { display: none; } /* Archive Pages like Tag, Category */ .archive .entry-meta-header-top { display: none; } .archive .entry-meta-header-bottom ul li:first-child, .archive .entry-meta-header-bottom ul li:before { display: none; }
Thanks
That did it, thanks so much!
designorbital
Theme AuthorThanks for your feedback.
- The topic ‘Removing author name and category’ is closed to new replies.