In JIRA 445, Agile link is seen on the topmost left corner of the login page even before a user logs in. How can this be hidden?
There is no default way of doing this, but what you can do is check with javascript if someone is logged in, and remove the Agile tab when they are not logged in:
<script type='text/javascript'>
AJS.$(document).ready(function() {
if (AJS.$("#header-details-user-fullname").length == 0) {
if (AJS.$("#greenhopper_menu").length) {
AJS.$("#greenhopper_menu").parent().hide();
}
if (AJS.$("#greenhopper_menu_no_project").length) {
AJS.$("#greenhopper_menu_no_project").parent().hide();
}
}
});
</script>
You can find steps on how to include this html here.
Please mark the question answered if this helped you, which makes it easier for future users :)
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.