Hi
An internal audit pointed out that the Version is exposed in Response header and Metadata for the Jira system.
So I tried to hide this, "Hiding the Jira version number from page markup" method, but it didn't work. Is there any other way?
That's the information I want to hide.
<meta name="application-name" content="JIRA" data-name="jira" data-version="7.13.18">
<meta name="ajs-version-number" content="7.13.18">
<meta name="ajs-build-number" content="713018">
Thanks
Hi @Jaewoong Choi ,
in order to do that you need to follow this guide https://confluence.atlassian.com/jirakb/hiding-the-jira-version-number-from-page-markup-1056673381.html
Ciao,
Fabio
I've already tried the way you told me. But it didn't work. That's why I asked if there was another way.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Eventually, I decided to process it with the script below.
AJS.$("meta[name='application-name']").remove();
AJS.$("meta[name='ajs-version-number']").remove();
AJS.$("meta[name='ajs-build-number']").remove();
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Footer has already taken action.
What I want is that when I look at the page information using Dev tools in the browser, I don't see the information below.
<meta name="application-name" content="JIRA" data-name="jira" data-version="7.13.18">
<meta name="ajs-version-number" content="7.13.18">
<meta name="ajs-build-number" content="713018">
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jaewoong Choi ,
please could you post that page? I need to explore it in order to figure out how to hide those elements.
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please check the example page below.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
After all, what I want to do is to make the following values invisible to the user or remove them from the Response Header value or Browse's Dev Tool.
<meta name="application-name" content="JIRA" data-name="jira" data-version="$JiraVersion">
<meta name="ajs-version-number" content="$JiraVersion">
<meta name="ajs-build-number" content="$JiraVersion">
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jaewoong Choi ,
you need to add the following code in the Announcement Banner :
<script>
jQuery().ready(function() {
jQuery("#footer").hide();
}
</script>
Hope this helps,
Fabio
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.