[cXF] Conversation Button - Opening Custom Message in Overlay Window

XMAN

Active member
Joined
Jul 12, 2021
Messages
19,637
Reaction score
21
Points
38
667b89780e402.jpg

Step 1

/src/addons/BassMan/ConversationButton/_data

We go to this directory and open the template_modifications.xml file located here in an editor.
Code:
Code:

<xf:button href="{{ link('conversations/add', '', {'to': $user.username, 'title': $__globals.thread.title}) }}" class="cxf-button button--link">
Code:
Code:

<xf:button href="{{ link('conversations/add', '', {'to': $user.username}) }}" class="cxf-button button--link">
  • We add data-xf-click="overlay" to the end of these codes.
  • So like this
Code:
Code:

<xf:button href="{{ link('conversations/add', '', {'to': $user.username, 'title': $__globals.thread.title}) }}" class="cxf-button button--link" data-xf-click="overlay">
Code:
Code:

<xf:button href="{{ link('conversations/add', '', {'to': $user.username}) }}" class="cxf-button button--link" data-xf-click="overlay" >
  • Then we save the file.
  • Then we go to lines 36 and 42. These lines have the following code (on both lines separately):
Code:
Code:

class="cxf-icon button--link">
  • Similar to these two codes, we add data-xf-click="overlay" to make them like this:
Code:
Code:

class="cxf-icon button--link" data-xf-click="overlay">

now rebuild

Continue reading...
 
Top