XF 2.2 User metion does not autocomplete

Joan1211

Member
Hello,

Let's say that I have a user (myself) named "admin", and I have another user called "student".
If I write @adm or @stude, it should display users having these letters in their usernames.

However, this feature is not working on my website.
(Both users have been active today)

Is there a setting that needs to be configured?

Screenshot 2024-01-10 at 19.34.55.webp
 
i found the issue.

in the Page_container template I had inserted this code after the "header"
<script>
window.addEventListener('keydown', function (e) { e.stopPropagation(); }, true);
window.addEventListener('keyup', function (e) { e.stopPropagation(); }, true);
window.addEventListener('keypress', function (e) { e.stopPropagation(); }, true);
</script>


The purpose of this code was to correct the bug:
Backspace key unexpectedly deletes line-breaks above caret that were created using Shift+Enter

 
Top Bottom