XF 2.3 Attachments insert full image automatically?

Is there a way of when someone uploads an attachment it inserts automatically in the thread instead of thumbnails at the bottom?
 
They must use the image icon above the text editor, not the upload attachments button.

I have changed the phrase of the upload attachments button (button.attach)

Screenshot 2024-10-23 at 16.04.54.webp

NB: the get that image in the phrase, change the phrase to:

Code:
Attach files here<br />
<span class="im">For images use the icon </span>above

Then add to extra.less

Code:
//attachment notice
.im:after
{
    .m-faContent(@fa-var-image)
}
 
Last edited:
Back
Top Bottom