⭐ Alex ⭐
Well-known member
Currently there is no way to disable or manage keyboard shortcuts. The forum comes with some shortcuts built in and this messes up interactive content pages that require use of the keyboard.
Please add a simple toggle in the ACP for enabling or disabling keyboard shortcuts site-wide.
Thanks!
Current work-around to disable all keyboard shortcuts forum-wide:
Please add a simple toggle in the ACP for enabling or disabling keyboard shortcuts site-wide.
Thanks!
Current work-around to disable all keyboard shortcuts forum-wide:
Add this code to the bottom of the PAGE_CONTAINER template
Code:
<xf:js>
var nodeList = document.querySelectorAll('[data-xf-key]');
for (var i = 0; i < nodeList.length; i++) {
nodeList[i].removeAttribute("data-xf-key");
}
</xf:js>
Last edited:
Upvote
5