Hello @just220,
I checked and hiding the metadata works as expected by following the provided documentation.
If you want to hide the tags and categories from the single post page, you can use this code:
.entry-categories{
display: none;
}
.entry-tags{
display: none;
}
If you want to hide the categories from the blog page articles, you can use this code:
.category .text-info {
display: none;
}
I hope this will help you solve the issues!
Best regards,
Irinel