BILLmanager Knowledge Base

How to hide the Help section

The Help section of the BILLmanager platform contains the following subsections:

  • under an administrator account:
    • Help — link to the start page of BILLmanager 6 documentation;
    • Feature request — a link to the Customer feedback resource, where authorized users can leave feedback on the product or a request for improvement;
    • Change log — a list of released updates to the product;
    • About program — license information.
  • under a client account — subsection Help. Link to the client area page in BILLmanager 6 documentation.

This article contains a solution for providers who want to hide the specified partitions:

  • for their clients;
  • for all users
  • for all users, except root.

Hide for clients

To hide the Help section for clients:

  1. Connect to the server with the platform via SSH.
  2. Create the following xml file:

    /usr/local/mgr5/etc/xml/billmgr_mod_hide_help.xml

    File contents:

    <?xml version="1.0" encoding="UTF-8"?>
    <mgrdata>
    <mainmenu level="16" name="User" startpage="dashboard">
    <node name="mgrhelp" if="hide">
    <node name="clienthelp" if="hide"/>
    </node> 
    </mainmenu>
    </mgrdata>
  3. Clear the xml file cache and restart the platform with the command:

    rm /usr/local/mgr5/var/.xmlcache/* -rf && /usr/local/mgr5/sbin/mgrctl -m billmgr -R
  4. Log in with a client account and check for the Help section.

Hide for all users

To hide the Help section for all users:

  1. Connect to the server with the platform via SSH.
  2. Create the following xml file:

    /usr/local/mgr5/etc/xml/billmgr_mod_hide_help.xml

    File contents:

    <?xml version="1.0" encoding="UTF-8"?>
    <mgrdata>
    <mainmenu level="all" name="User" startpage="dashboard">
    <node name="mgrhelp" if="hide">
    <node name="clienthelp" if="hide"/>
    </node>
    </mainmenu>
    </mgrdata>
  3. Clear the xml file cache and restart the platform with the command:

    rm /usr/local/mgr5/var/.xmlcache/* -rf && /usr/local/mgr5/sbin/mgrctl -m billmgr -R
  4. Log in with an administrator account and check for the Help section.

Hide for all users, except root

To hide the Help section for all users except root:

  1. Connect to the server with the platform via SSH.
  2. Create the following xml file:

    /usr/local/mgr5/etc/xml/billmgr_mod_hide_help.xml

    File contents:

    <?xml version="1.0" encoding="UTF-8"?>
    <mgrdata>
    <mainmenu level="29" name="User" startpage="dashboard">
    <node name="mgrhelp" if="hide">
    <node name="clienthelp" if="hide"/>
    </node>
    </mainmenu>
    </mgrdata>
  3. Clear the xml file cache and restart the platform with the command:

    rm /usr/local/mgr5/var/.xmlcache/* -rf && /usr/local/mgr5/sbin/mgrctl -m billmgr -R
  4. Log in with an administrator account and check for the Help section.