I have Created one Page Template and made it as default. when a user click on create button, a custom page template will be appeared by default. however the tooltip of Create is still showing "Create blank page". how to change it to the template name or simply "create".
Hi @Karteek ,
Could you please attach a screenshot to this thread, so we can review where the tooltip you are referring to continue on being displayed?
Kind regards,
Rafael
Hi @Karteek ,
Thank you for the screenshot.
This "Create blank page (c)" comes from:
<a href="/pages/createpage.action?spaceKey=~admin&src=quick-create" id="quick-create-page-button" class="aui-button aui-button-primary" title="Create blank page (Type 'c')" tabindex="0">Create</a>
This is created by the anchor's title by default. If you want to change that, you could create a Script tag under At end of the BODY on http://localhost:8090/admin/editcustomhtml.action
<script>
AJS.toInit(function(){
var createPageButton = AJS.$('#quick-create-page-button');
AJS.log(createPageButton);
})
</script>
And update the title attribute to something other than what is there.
More information on https://confluence.atlassian.com/confkb/how-to-override-quick-create-page-button-in-confluence-5-9-x-818253227.html
Kind regards,
Rafael
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello would you please have the same KB but for Jira button like the "create" button ?
Thanks !
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.