I would like to disable/remove the "Original estimate" and "Remaining estimate" fields when logging work. We use Jira as more of a time tracking tool and these fields don't offer a lot of value. Is there a way to do that?
No, I mean that I want people to be able to log the work that they do against a task but I don't want them to have to enter a "Remaining estimate" or "Original estimate" when they log time.
you mean you want to disable worklog?if yes then check this this document
https://confluence.atlassian.com/display/JIRA/Configuring+Time+Tracking
another way is using javascript you can hide those two options,
try with this by adding in footer.jsp or you can add it in any plugin as web resource
<script type="text/javascript"> jQuery(document).ready(function($) { JIRA.bind(JIRA.Events.NEW_CONTENT_ADDED, function (e,context) { hideField(); }); hideField(); function hideField(){ var remainEst=document.getElementsByName("adjustEstimate"); for ( var x = 0; x < remainEst.length; x++) { remainEst[x].hide(); (or) remainEst[x].closest('div.field-group').hide(); } $("timetracking").closest('div.field-group').hide(); } }); </script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, I mean that I want people to be able to log the work that they do against a task but I don't want them to have to enter a "Remaining estimate" or "Original estimate" when they log time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you can do it bby using JS check my answer i have updated
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We run Jira OnDemand. Can this solution be used with OnDemand? Also, I was hoping for some kind of built-in functionality. Is there anything in the settings that would allow this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline 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.