@jsmith
The changes need to be made to the files of a Persona theme, found the directory like this:
I was try to do this on my forum and I did it, this is what you need to do:
tags-in-topic.png
You need edit 2 files - topic.tpl and post.tpl
/node_modules/nodebb-theme-persona/templates/topic.tpl /node_modules/nodebb-theme-persona/templates/partials/topic/post.tpl Copy and remove this code in the topic.tpl <div class="tags tag-list inline-block hidden-xs"> <!-- IMPORT partials/topic/tags.tpl --> </div> Paste this in the post.tpl after {posts.content}<div class="content" component="post/content" itemprop="text">
{posts.content}
</div>
Now run the command to build Nodebb and that's it, ready.
UPD.
(note that when the screen size is a mobile phone the tag is not even displayed in the post/header.)
Yes, you right. To show tags on mobile you need remove hidden-xs in the div class.
<div class="tags tag-list inline-block"> <!-- IMPORT partials/topic/tags.tpl --> </div>