How can I hide group membership from the user summary?

Plexus ALM Support December 4, 2012

How can I hide group membership from the user summary?

2 answers

1 accepted

1 vote
Answer accepted
twong_atlassian
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.
December 5, 2012

You can muck with the velocity template that controls that.

In JIRA 4.4.3, edit the atlassian-jira-4.4.3-standalone/atlassian-jira/WEB-INF/classes/templates/plugins/userprofile/details-profile-fragment.vm

Find this section:

#if($groups)
            <dl>
                <dt>$i18n.getText('common.words.groups'):</dt>
                <dd class="description">
                #foreach($group in $groups)
                    $textutils.htmlEncode($group)<br/>
                #end
                </dd>
            </dl>
            #end

Replace $groups with 1==0

Restart JIRA.

Plexus ALM Support December 7, 2012

Thanks Tim, that got us close but with a couple errors.

The solution for us was to delete that entire chunk of code, from “#if($groups)” to “#end” (including those lines)

twong_atlassian
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.
December 7, 2012

Aww shucks. Was trying to be all fancy like. That works too for obvious reasons :P

0 votes
Damon Morda September 25, 2014

This solution no longer seems to work in later versions of JIRA. Does anyone know how to accomplish this in 6.x versions of JIRA?

Suggest an answer

Log in or Sign up to answer