Greetings,
I’m working on http://192.185.4.114/~castweb/media/sermons/ and can’t figure out how to get rid of the date, category, and author texts that keep showing up under the post title. I’ve turned them all off in the “Blog Layout” section of the Enfold child theme. This turns them off for individual post pages, but not for this compilation page which is drawing from my “sermon” category. Is there any way to do this? I’m a newby at this.
Thanks,
Nick
I found some similar posts and added the following via quick css:
.post-meta-infos span {
display: none;
}
This leaves me with just the date. How can I get rid of the date, too?
Never mind, I got it. I added the following to quick css:
.post-meta-infos { display: none; }
This did the trick.