Hide tags on the header of the Diary template
I use the Diary theme and between the blog title on the left and the header menu on the right, it shows tags from my posts. How can I turn this off? I don't want the tags to be there. If they are under the post, that's perfectly fine with me.
You can remove the tags from the Diary template if you remove the following lines from the template's header.html file:
<div class="tags">
<div style="overflow: hidden;height: 1.45em">
{{#popular_tags}}
<a href="/tagged/{{slug}}" {{#active}}style="font-weight:600"{{/active}} title="{{tag}}">{{tag}}</a>
{{/popular_tags}}
</div>
</div>
Answered 4 years ago ยท
Edit answer