XF 2.1 Which template to edit?

Ludachris

Well-known member
I'm trying to place some content in the following spot in the Conversation quick reply area:

1587066341165.webp

Which template would I edit to do that? I tried the "conversation_reply" template, but couldn't get the content to display.
 
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>
 
Top Bottom