I don't know what you mean by "Ontrak".
That system is Jira, and you're looking at the comment field. The options you've highlighted are part of the core system.
You can disable the preview and help icons by disabling wiki markup for comments (if you want to keep wiki markup, then I strongly recommend leaving the icons alone, a LOT of your users DO find them useful, even if you don't think they do)
You'll need to do a little coding to get rid of the "viewable by" - kill it with javascript (ugh), or nip into the core to remove it completely (and leave all comments automatically open to all). I'm not sure it's worth the effort though.
Hi,
This is requirement from one of our project team. could you also explain how can i disable the preview and help icons by disabling wiki markup? Also if I disable it for a particular project will it disabled for all the other projects?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Nic,
I do have simillar question,
I want to disable the online help from all the screen for example, edit issue screen, transition screen ,create issue screen etc.
As you said this is the part of the system core plugin, need to know ,by disabling which plugin we can achieve this, i hope i am clear about my question.
Thanks and regards,
Moiz Shaikh.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Neeta, yes, it's a global setting for the field. If you make a field plain text, you will no longer get the help link on that that field. But you can do this on a project-by-project basis, by using different field configurations (as that's where you define the renderer, and it's project and/or issue-type config)
Shaikh, you can't do that without changing code - the links are part of the functions they refer to help with - to get rid of them completely by turning off modules in core functions, you have to turn off the entire functionality.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Nic,
for your valuable support and quick response.
Regards,
Moiz.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you need try something like this
<script type="text/javascript"> jQuery(document).ready(function($) { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) { hideWikiMarkUps(); }); hideWikiMarkUps(); function hideWikiMarkUps(){ //hide prview icon $('#comment-preview_link').hide(); //hide help icon $('#viewHelp').hide(); //hide security level $('#commentLevel-multi-select').hide(); } }); </script>
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.