Hi @stoent,
Firstly, thanks to use aemi theme.
Then, here is the tip :
Create a child theme of aemi, then in functions.php, add
if ( ! function_exists( 'aemi_posted_info' ) )
{
function aemi_posted_info()
{
if ( 'page' !== get_post_type()
{
?><div class="post-details">
<div class="post-date"><?php the_time( 'j F Y' ); ?></div>
<div class="post-mod"><?php the_modified_time( 'j F Y - G:i'); ?></div>
<div class="post-author"><?php the_author_posts_link(); ?></div>
</div><?php
}
}
}
It will remove these details from HTML source. If you want to just hide them from displaying : add to child theme style.css :
body.page h1.post-title {
margin: 0;
}
body.page .post-details {
display: none;
}
I hope I helped you.
Regards,
-
This reply was modified 5 years, 9 months ago by g.cqd.
-
This reply was modified 5 years, 9 months ago by g.cqd.
-
This reply was modified 5 years, 9 months ago by g.cqd.