It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
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?
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>
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.
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.
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.