- This topic has 2 replies, 2 voices, and was last updated 6 years, 9 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support › Forums › Flex Theme › How can I remove date and author on posts?
How can I remove date and author on posts? thanks
Find this function flex_post_info_filter in functions.php file. Then replace this line
$post_info = '[post_date] [post_author_posts_link] [post_comments] [post_edit]';
WITH
$post_info = '[post_comments] [post_edit]';
I couldn’t find it. But this worked.
.entry-meta {
display: none;
}