<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://rt-wiki.bestpractical.com/index.php?action=history&amp;feed=atom&amp;title=HideConfigurationTab</id>
	<title>HideConfigurationTab - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://rt-wiki.bestpractical.com/index.php?action=history&amp;feed=atom&amp;title=HideConfigurationTab"/>
	<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=HideConfigurationTab&amp;action=history"/>
	<updated>2026-08-23T17:43:07Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://rt-wiki.bestpractical.com/index.php?title=HideConfigurationTab&amp;diff=1496&amp;oldid=prev</id>
		<title>Admin: 2 revisions imported</title>
		<link rel="alternate" type="text/html" href="https://rt-wiki.bestpractical.com/index.php?title=HideConfigurationTab&amp;diff=1496&amp;oldid=prev"/>
		<updated>2016-04-06T20:11:19Z</updated>

		<summary type="html">&lt;p&gt;2 revisions imported&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Original version contributed by [[BillGerrard]] This version by Richard Ellis - correct minor typo which displays Configuration tab at bottom instead of position 5&lt;br /&gt;
&lt;br /&gt;
== How to hide the Configuration Tab in RT3 ==&lt;br /&gt;
&lt;br /&gt;
== RT 3.8.x and higher ==&lt;br /&gt;
&lt;br /&gt;
It is as simple as not giving the user the [[SeeConfigTab]] privilege. Users who are not [[SuperUsers]] and without this privilege will not see the Configuration tab.&lt;br /&gt;
&lt;br /&gt;
== RT3.6.x and lower ==&lt;br /&gt;
&lt;br /&gt;
First copy &amp;quot;/path/to/rt3/share/html/Elements/Tabs&amp;quot; to &amp;quot;/path/to/rt3/local/html/Elements/Tabs&amp;quot; then open it in your editor and remove the following code block:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;my $basetabs = {     A =&amp;amp;gt; { title =&amp;amp;gt; loc(&amp;#039;Homepage&amp;#039;),&lt;br /&gt;
                           path =&amp;amp;gt; &amp;#039;&amp;#039;,&lt;br /&gt;
                         },&lt;br /&gt;
                    B =&amp;amp;gt; { title =&amp;amp;gt; loc(&amp;#039;Tickets&amp;#039;),&lt;br /&gt;
                        path =&amp;amp;gt; &amp;#039;Search/Build.html&amp;#039;&lt;br /&gt;
                      },&lt;br /&gt;
                    E =&amp;amp;gt; { title =&amp;amp;gt; loc(&amp;#039;Configuration&amp;#039;),&lt;br /&gt;
                           path =&amp;amp;gt; &amp;#039;Admin/&amp;#039;&lt;br /&gt;
                         },&lt;br /&gt;
                    K =&amp;amp;gt; { title =&amp;amp;gt; loc(&amp;#039;Preferences&amp;#039;),&lt;br /&gt;
                        path =&amp;amp;gt; &amp;#039;User/Prefs.html&amp;#039;&lt;br /&gt;
                      },&lt;br /&gt;
                    P =&amp;amp;gt; { title =&amp;amp;gt; loc(&amp;#039;Approval&amp;#039;),&lt;br /&gt;
                           path =&amp;amp;gt; &amp;#039;Approvals/&amp;#039;&lt;br /&gt;
                         },&lt;br /&gt;
                 };&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
...and in its place add:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;nowiki&amp;gt; my $basetabs = {     A =&amp;amp;gt; { title =&amp;amp;gt; loc(&amp;#039;Homepage&amp;#039;),&lt;br /&gt;
                           path =&amp;amp;gt; &amp;#039;&amp;#039;,&lt;br /&gt;
                         },&lt;br /&gt;
                    B =&amp;amp;gt; { title =&amp;amp;gt; loc(&amp;#039;Tickets&amp;#039;),&lt;br /&gt;
                        path =&amp;amp;gt; &amp;#039;Search/Build.html&amp;#039;&lt;br /&gt;
                      },&lt;br /&gt;
                    K =&amp;amp;gt; { title =&amp;amp;gt; loc(&amp;#039;Preferences&amp;#039;),&lt;br /&gt;
                        path =&amp;amp;gt; &amp;#039;User/Prefs.html&amp;#039;&lt;br /&gt;
                      },&lt;br /&gt;
                    P =&amp;amp;gt; { title =&amp;amp;gt; loc(&amp;#039;Approval&amp;#039;),&lt;br /&gt;
                           path =&amp;amp;gt; &amp;#039;Approvals/&amp;#039;&lt;br /&gt;
                         },&lt;br /&gt;
                 };&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 if ( $session{&amp;#039;CurrentUser&amp;#039;}-&amp;amp;gt;HasRight(Right =&amp;amp;gt; &amp;#039;SuperUser&amp;#039;,  Object =&amp;amp;gt; $RT::System) ) {&lt;br /&gt;
 &lt;br /&gt;
                    $basetabs-&amp;amp;gt;{&amp;#039;E&amp;#039;} = { title =&amp;amp;gt; loc(&amp;#039;Configuration&amp;#039;),&lt;br /&gt;
                          path =&amp;amp;gt; &amp;#039;Admin/&amp;#039;&lt;br /&gt;
                         };&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once this is working you can just assign your &amp;quot;admin&amp;quot; users the global right of &amp;quot;SuperUser&amp;quot; and they will see the config link. Regular users will not.&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>