Hi there,
Thanks for using Napoli.
The theme includes the hatom classes but the date and author are usually not displayed on static pages, therefore a few errors are normal.
Please also make sure you haven’t deactivated post details in the settings.
Best,
Thomas
Hi..
I guess I realized what the problem was. I had commented out $postmeta = napoli_meta_date(); in template-tags.php and maybe that was the reason why. so I decided to remove hentry using the following code in function.php :
add_filter( 'post_class', 'remove_hentry' );
function remove_hentry( $class ) {
$class = array_diff( $class, array( 'hentry' ) );
return $class;
}
Hi there,
Yes, the date function includes the .updated class, for example.
Glad you have found a solution with removing the hentry class, that snippet is fine.
Cheers,
Thomas