Overview
This article discusses the steps to take in order to hide the support button from the CMP portal.
Considerations
Make sure to test the customization in each upgrade before running the upgrader in your production environment where this customization exists.
Procedure
Step 1 Make modifications to the template
ssh to your CloudBolt server
Create the directory
/var/opt/cloudbolt/proserv/templates/common/
3. Copy header.html
using this command:
scp /opt/cloudbolt/templates/common/header.html /var/opt/cloudbolt/proserv/templates/common/
4. Edit the copied file at
/var/opt/cloudbolt/proserv/templates/common/header.html
and remove this section of code:
<div class="dropdown-menu__actions"> <div class="quick-actions"> <h2 class="heading-5 bold panel-title">Quick Actions</h2> <a href="https://support.cloudbolt.io/hc/en-us/requests/new" target="blank" class="cb-btn cb-btn-secondary">Create a Support Ticket</a> </div> </div>
5. Save your changes to header.html
Step 2 Restart apache
service httpd restart
0 Comments