And the others tags like “published by…”
Hi @just220,
If you wish to hide post tags, you can achieve this using CSS, as outlined in this documentation: https://docs.themeisle.com/article/891-hestia-pro-hide-remove-page-titles.
Feel free to reach out if you have any more questions or need further assistance!
Hi,
I’ve tried this solution but it doesn’t work.
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