π Hide Post Tags in Hestia Theme (Free & Pro)
β 1. Built-in Setting in Customizer
Hestia includes an option in the WordPress Customizer to control whether tags are shown on single posts.
- Go to Appearance β Customize in your WordPress dashboard.
- Navigate to Blog Settings β Posts & Pages.
- Look for a toggle labeled Display Tags.
- Turn it Off β Publish/save your changes.
π This option hides tags attached to your posts without code.
Note: In the pro version additional options might be available, but the free version already includes Display Tags control.
β 2. Use CSS to Hide Tags (Alternative)
If your version of Hestia doesnβt show a βDisplay Tagsβ option in the customizer, you can hide tags with a small CSS snippet:
- Go to Appearance β Customize β Additional CSS.
- Paste this CSS:
.single-post .post-tags {
display: none !important;
}
- Click Publish.
That will hide the tags section on all single post pages β useful when the theme doesnβt provide a direct toggle.
π Notes / Additional Tips
π§© Where Tags Show Up
In Hestia, βtagsβ are part of the post meta shown below the post content. In the Customizer under Blog Settings β Posts & Pages you can choose to show/hide:
- Categories
- Tags
- Related posts section
Turning off βDisplay Tagsβ here directly removes them without CSS.
π‘ Why You Might Still See Tags
If tags still show after CSS:
- Your theme version might use a different CSS class β inspect your site code to confirm the selector.
- A child theme or page builder template might override the default output.
π οΈ Bonus: Hide Other Post Meta (Date / Author / Categories)
If you want to hide other metadata (e.g., date or author) too, add similar CSS:
.single-post .posted-on,
.single-post .byline,
.single-post .cat-links {
display: none !important;
}
π Summary
| Method | Works With | Ease |
|---|---|---|
| Customizer Display Tags toggle | Hestia (free & pro) | ββββ |
| Custom CSS in Customize β Additional CSS | Any WordPress site | βββ |