R rdn Well-known member Nov 29, 2022 #1 I tried via advertisement and directly editing post_macros; both didn't work.
R rdn Well-known member Nov 29, 2022 #2 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" /> Upvote 0 Downvote
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 Active member Feb 21, 2023 #3 Also curious how you could move "Similar Threads" to this location (or others)! Upvote 0 Downvote
O Old Nick Well-known member Feb 21, 2023 #4 @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> Upvote 0 Downvote
@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>
R rdn Well-known member Feb 22, 2023 #5 But it will not work with the xfes_thread_view_below_quick_reply_similar_threads widget; for other widgets, it might work. Upvote 0 Downvote
But it will not work with the xfes_thread_view_below_quick_reply_similar_threads widget; for other widgets, it might work.
Jeremy P XenForo developer Staff member Feb 22, 2023 #6 You would need to pass the thread as context. Assuming $thread is a valid thread entity: HTML: <xf:widget key="xfes_thread_view_below_quick_reply_similar_threads" context-thread="{$thread}" /> Upvote 1 Downvote
You would need to pass the thread as context. Assuming $thread is a valid thread entity: HTML: <xf:widget key="xfes_thread_view_below_quick_reply_similar_threads" context-thread="{$thread}" />