Lack of interest Option to Disable Keyboard Shortcuts

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

⭐ 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:
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
This suggestion has been closed. Votes are no longer accepted.
Top Bottom