Home › Forums › WordPress Themes – Premium › Preferential › Meta data › Reply To: Meta data
July 3, 2014 at 7:58 pm
#20196
Moderator
You can hide the meta data by doing some custom CSS to hide the div container that info content shows up in as:
.entry-meta {display: none;}
Everything else is going to be the same. You can look at the html source code of your page to see where and what you want to hide, but basically this is where a person needs to now do as mentioned above by seeing the container that something is in, look at the ID or class of it, and use that to display:none; in a custom CSS stylesheet.