XF 2.2 How to move XFES Similar Threads widget under 1st post on each thread page?

I tried pasting this on the post/post_macro template, but it didn't work.

Code:
<xf:widget key="xfes_thread_view_below_quick_reply_similar_threads" />
 
@trigatch4 @rdn
You can use the Advertising system and create an ad with the Post: below message container position and add this to the code field
HTML:
<xf:if is="$post.position == 0">
    <xf:widget key="widget_key" />
</xf:if>
 
Top Bottom