I need to remove the text "By" and the post author's name and the separator line " | " for every post on a blog I am setting up. Is there a simple way to do this? I saw this issue addressed elsewhere on the forum, and they mentioned "thematic/library/extensions/hooks-filters.php" but I don't seem to have that document.
ThemeShaper Forums » Thematic
remove "By Author | " text in meta on every post
(4 posts)-
Posted 2 years ago #
-
B.B
There are a ton of posts on this topic.
The quick and easy way is via csshttp://themeshaper.com/forums/topic/how-to-remove-posted-in-uncategorized-comments-closed
If you want to investigate other methods try a search (in this forum) for something like "remove meta"
Posted 2 years ago # -
(Hi amygail, thanks for your help.)
With the link above, I was able to remove the Author Name and separator, but was still left with the word "By" in the post meta. After a little more investigation, I found that the word "By" in the post meta was labeled ".meta-prep-author" in the content-extensions.php file. So here is what finally worked for me -- just use the code below in the "style.css" of your child theme under the section called "/* =Content" ...this will remove the " By Author Name | " text but leave the " Published: Date " text:
.entry-meta .meta-prep-author {
display:none;
}
.entry-meta .author {
display:none;
}
.entry-meta .meta-sep {
display:none;
}That's it!
Posted 2 years ago # -
Greetings All,
This post has been of great help.
Cheers
LQuntaPosted 2 years ago #
Reply
You must log in to post.