The only solution I've found:
You can use ScriptRunner (Adaptavist ScriptRunner for Confluence) plugin to disable this.
Go to ScriptRunner Fragments section and create a "Hide System or UI Plugin Element" and hide the following elements:
com.atlassian.confluence.plugins.confluence-create-content-plugin:header-create-dialog
com.atlassian.confluence.plugins.confluence-create-content-plugin:header-create-quick
Write "return false" in the script.
Excellent solution! In case only need to disable for a particular group you can use this snippet:
import com.atlassian.crowd.embedded.api.CrowdService
import com.atlassian.sal.api.component.ComponentLocator
def crowdService = ComponentLocator.getComponent(CrowdService)
!crowdService.isUserMemberOfGroup(context.currentUser?.name, "{group name goes here}")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone,
Thanks for the lively discussion about keyboard shortcuts! My name’s Matt and I’m one of the product managers in Jira Cloud. My team picked this problem up and have just started to roll out a feature that will allow users to enable/disable shortcuts at a per-user level.
See the attached screenshot of what this will look like. We were constrained by time so we decided to put it into the keyboard shortcut (Shift + ?) dialog for now. We believe this will address the problem and in the future, we will consider adding it inside the user profile page.
As of this afternoon, it will be available to 5% of Jira Cloud customers and we aim to get this rolled out to 100% in early August.
Kind regards,
Matt
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had the same problem in Confluence while creating page using custom template. When user creates a new page using my template and presses Caps+C while filling up the contents, Confluence creates a new page and disregards the current page. I handled it in my template through JQuery. Here's the code
<script type="text/javascript"> AJS.toInit(function(){
if(Confluence.KeyboardShortcuts.enabled){
RW.shortcutsEnabled =function(){
return false;
};
}
});
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.