Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
I'm attempting to utilise the Wordpress blog as general information list.
I want to remove the date, time, author and all the archive folder bits and lines below each blog post.
I found a Plugin to easily remove the date.
I found a plugin to remove the Author - but it still leaves a quotation mark (") at the beginning.
Is there an easier way to remove it all?
Thanks
Offline
Instead of the plug-ins you could use custom css to remove all of that post meta stuff, including the quote mark:
.post-meta {
display:none;
}
to remove just that quote mark:
.fa.fa-fw.fa-quote-left {
display:none;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Awesome - that worked great!
Offline