Ludachris Well-known member Apr 16, 2020 #1 I'm trying to place some content in the following spot in the Conversation quick reply area: Which template would I edit to do that? I tried the "conversation_reply" template, but couldn't get the content to display.
I'm trying to place some content in the following spot in the Conversation quick reply area: Which template would I edit to do that? I tried the "conversation_reply" template, but couldn't get the content to display.
Bespoke Well-known member Apr 21, 2020 #3 The template you are looking for is quick_reply_macros, however it is used for both conversations and threads and so you will have to place your desired text within an if/else statement in order to limit it to conversations only. Try something like: HTML: <xf:if is="$multiQuoteStorageKey == 'multiQuoteConversation'">XXXXXX</xf:if> Upvote 0 Downvote
The template you are looking for is quick_reply_macros, however it is used for both conversations and threads and so you will have to place your desired text within an if/else statement in order to limit it to conversations only. Try something like: HTML: <xf:if is="$multiQuoteStorageKey == 'multiQuoteConversation'">XXXXXX</xf:if>