XF 2.1 How to move tags in thread to bottom?

Go to
Admin Control Panel -> Appearance -> Styles & Templates -> Templates -> thread_view

Find, Cut the following code & paste it at the end of script of thread_view
Code:
<xf:if is="$xf.options.enableTagging AND ($thread.canEditTags() OR $thread.tags)">
            <li>
                <xf:macro template="tag_macros" name="list"
                    arg-tags="{$thread.tags}"
                    arg-tagList="tagList--thread-{$thread.thread_id}"
                    arg-editLink="{{ $thread.canEditTags() ? link('threads/tags', $thread) : '' }}" />
            </li>
        </xf:if>

Just remove <li> </li> while you paste the code
 
Top Bottom