Jump to content

How to hide/disable support ticket in my client area


osforce

Recommended Posts

  • 2 months later...

if you were using the default theme, then removing the code below from header.tpl would remove the dropdown links to existing tickets, knowledgebase, downloads and server status (when logged in) - plus opening new tickets too... I guess at the very least, you'd want to remove the links to supporttickets.php and submitticket.php

 

          <ul class="nav">
           <li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">{$LANG.navsupport} <b class="caret"></b></a>
             <ul class="dropdown-menu">
               <li><a href="supporttickets.php">{$LANG.navtickets}</a></li>
               <li><a href="knowledgebase.php">{$LANG.knowledgebasetitle}</a></li>
               <li><a href="downloads.php">{$LANG.downloadstitle}</a></li>
               <li><a href="serverstatus.php">{$LANG.networkstatustitle}</a></li>
             </ul>
           </li>
         </ul>

         <ul class="nav">
           <li><a href="submitticket.php">{$LANG.navopenticket}</a></li>
         </ul>

Link to comment
Share on other sites

Or create an .htaccess 301 redirect. Imo it's better because in this way you don't have to worry when you replace template files when you install updates, templates or edit existing ones.

Redirect 301 /supporttickets.php http://whateveryouwant.example.com/support

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated