How to remove / relocate the "People" and "Dates" widgets from Jira issues

Tom Saunders July 13, 2011

Does anybody have a method to move the "people" and "dates" widgets from the issues page in Jira? These widgets take up a lot of real estate on the right side of the issues page. If they were listed across the top or had a smaller a smaller ares to themselves in the right that would be great. This can be seen when viewing any issue in Jira.

Thanks!

5 answers

2 votes
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 13, 2011

Removing the following lines from viewissue.jsp will hide them:

<ww:property value="/peopleHtml" escape="false"/>
<jsp:include page="/includes/panels/issue/view_dates.jsp" />

Showing the fields under custom fields is a bit more tricky. Check out this thread for some details.

Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 13, 2011

Well I just realized that you can put the above two lines wherever you want to display those fields. So if you pu them under description, i.e. below:

<%@ include file="/includes/panels/issue_descriptiontable.jsp" %>

the date and people fields will appear there!

0 votes
Linda Walmer March 29, 2018

Did anyone figure out a solution to this?  JIRA's screen real estate use and inflexibility is astonishing.

0 votes
Tom Saunders July 22, 2011

Thanks for all the help with this, I am setting up a test copy of out prod system to try them out.

0 votes
David at David Simpson Apps
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
July 13, 2011

Maybe you could play with a little JavaScript. For example, this...

<script>
AJS.$('#secondary .content').children().appendTo('#primary .content');
AJS.$('#primary').css('width','100%');
</script>

...will append the content of the right hand column to the end of the left had column.

To quickly try this out, you could browse to...

JIRA <tt>Administration | Options & Settings | Announcement Banner</tt>

...and paste the code.

Of course you could do fancier stuff like create some buttons in the command-bar and move the content into an AJS.Dialog or similar.

0 votes
Markus Lepper
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 13, 2011

Hi Tom,

a bit of info you could find in this related answers:

Is it possible to edit the issue view screen layout?

JIRA Date & People Field Position on Screen

You might need to touch CSS and several velocity templates to get the desired view. Jira updates will need reworking...

BR, Markus

Suggest an answer

Log in or Sign up to answer