Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Is it possible to hide the tempo plugin section on a issue?
This is a global configuration and will affect all issues. Please have in mind that the Tempo section in an Issue only shows the hours logged by yourself, it does not display hour logged by other users.
I wanted to ask again about if and when this might be changed to be configurable by project. We have only a few projects that want this section and the other project admins are adamant about not having tempo showing up on their projects at all. Has this been worked on or can it be added soon? I'd hate to have to remove the plugin completely over this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
you can hide the Tempo section in the issue by disabling a module.
You need to go to Administration-> Add-ons, Manage Add-ons. Expand Tempo Timesheets and click the + next to the modules enabled. This opens the list of modules. Disable the "tempo-worklogs-module" and the Tempo section of the Issue will be hidden.
Kind regards
Susanne (Tempo)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thx Susanne!
Is there a possibility to configure it for each project or is this configuration always general?
Cheers, Joscha
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Susanne, do you have any info to share on this?
Thank you,
Ryan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does not seem to be possible, I get "Module cannot be modified" (Using JIRA in the cloud)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Update: We have had customers reporting that disabling the Tempo panel may cause performance degradation in some browsers.
I would like to add to this, that although it is possible to disable the entire modules via the JIRA Plugin manager, we do not recommend disabling individual Tempo modules. We cannot guarantee that the software works as expected when one or more modules are disabled.
Kind Regards,
Hlynur Johnsen
Product Manager - Tempo
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you have plans to add a setting for this so people can do this in an offical way?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does not seem to be possible, I get "Module cannot be modified" (Using JIRA in the cloud)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We don't use Tempo and it is a default field every time we create a new project. This is a maintence issue and our administrators spend too much time removing the default field every time a project is created.
Please allow us to remove this feature globally (on JIRA Cloud)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is resolved for me. For future people with this issue, I found the option to do this:
https://[YOUR-CLOUD-DOMAIN].atlassian.net/secure/admin/TimeTrackingAdmin.jspa
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've disabled Time tracking in Jira Cloud, but still see Tempo sections everywhere in stories preview and main screens :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I Currently use Scriptrunner to hide the UI Panel for users without WORK_ON_ISSUES Permission for the project.
Scriptrunner -> Fragments -> Hide System or Plugin UI element
Hide What:
com.tempoplugin.tempo-core:tempo-issue-view-panel
Condition:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.security.plugin.ProjectPermissionKey
def issueManager = ComponentAccessor.issueManager
def project = jiraHelper.project?.key
def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
if (project != null){
def permissionManager = ComponentAccessor.getPermissionManager()
if(permissionManager.hasPermission(new ProjectPermissionKey("WORK_ON_ISSUES"), issue, user)){
return true
}
}
return false
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you @Matthew Beda this is brilliant!
We were looking for a way to disable the Tempo section in a specific project, and found your script to be a great basis to do so (by the way, Tempo have added your script and link to here, to their documentation).
The only change we made was change the condition to the below, and it's working like a charm on Tempo v15.9.1 (Jira Server v8.20.x)
! (jiraHelper.project?.key in ["MYPROJECTKEY"])
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Go to JIRA Administration->System->Global Permissions.
Remove all the groups under Tempo Timesheets Access.
Create a new group "xyz" and add users who want to see tempo timesheets on issues.
Associate this "xyz" group to Tempo Timesheets Access.
Now tempo timesheet will only appear for users who are in the "xyz" group.
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.
In the plug-in version (9.5.0) I used, the disabled modules are as follows:
1、System Plugin: Tempo Core -> tempo-issue-view-panel
2、Tempo Timesheets -> collaboratorsmodule
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great! Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Create unique Permissions scheme for projects without Tempo.
Remove roles from permission "Work On Issues", this will hide the panel, but also hide "Log work" from Main Menu.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That worked until we upgraded to Tempo 9.3. Now it shows:
No plans have been created for this issue.
and has a button called Plan Time.
Why on earth would they have Plan Time show up for a project that doesn't log time? And no, we do not have the Tempo Planner Add-on.
Any idea? I cannot find anything.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have the same problem. Upgrading from 8.x to 9.x latest and this plan time button appears and users are so confused as we don't use Tempo Planner. How do we hide the plan time from the issue screen and from the Timesheets addon itself? Anyone figure it out?
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.