ESS Portal: Requirement to hide the "Response Time Indicator".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2016 11:39 PM
Hi All,
I have a requirement to hide the "Response Time Indicator" for some of my Content Pages of my ESS Portal.
I have learned from wiki that - "Administrators can disable the response time by setting the glide.ui.response_time property to false." But, It will affect the full Instance.
Please can you suggest a way to hide the same.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2016 02:07 AM
Hi Ashish,
I do not think there is a way to hide the indicator on particular pages. As it is a global property, it could be hidden globally or shown globally.
Raj

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2018 07:41 PM
It is possible to set Jelly variable on UI Pages which does the trick like following. But do not know will that help your case. Statement should be on the top of the page.
<j2:set var="jvar_hide_response_time" value="true" />
OR
<j:set var="jvar_hide_response_time" value="true"/>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2018 11:20 AM
Hi,
There isn't a OOB way to do this for a specific place. Thou if you move to Service Portal it won't be there for the end users. I also not sure I understand why you need to have this turned on the production instance. For me, this is something you use to trouble shoot and hopefully not that often.
I wouldn't recommend some advanced global script to do DOM Manipulation, cause it won't be worth all the time and trouble to make it work and then make sure it works with all new releases etc.
//Göran
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-01-2019 07:02 AM
You can change the display style of timer div:
.timingDiv {
display: none!important;
}
and that should resolve your problem