Hi Devs,
There is an error in the condition to display the “Main Tag” in post under the Post Title.
I found this problem when the Main Tag was not displayed even when it was enabled if neither Date nor Author were enabled. This was due to @config.post.displayTagName being used.
{{#checkIfAny @config.post.displayDate @config.post.displayAuthor @config.post.displayTagName}}
The correct statement should be checking for @config.post.displayCategoryName instead
{{#checkIfAny @config.post.displayDate @config.post.displayAuthor @config.post.displayCategoryName}}