Modifying label

image

how can I have the icons on the left-hand side customised such that i can only have ‘New and Home’. this is for basic users

Hello @Ndy,

You can hide menu items using custom CSS. But please, note, that it will be hidden for all users. Unfortunately, there is no way to make it conditional in this respect.

Please, see below how to apply custom CSS:

  • Create a custom CSS file, add there there the following CSS:

      div#pl-navigation .pl-nav-element + .pl-nav-element + .pl-nav-element{
          display: none
      }
    
  • Go to https://yourdomain.sharepoint.com/HelpDeskSiteName/HD/Forms/AllItems.aspx

  • Create a new folder styles, upload there custom.css file

  • Go to the folder scripts and replace the code in plumsail.helpdesk.customcss.js file with the following one:

      window.Plumsail = window.Plumsail || {};
      Plumsail.HelpDesk = Plumsail.HelpDesk || {};
      Plumsail.HelpDesk.CssToLoad = [
              {
                  id: "custom css",
                  url: "https://yourdomain.sharepoint.com/HelpDeskSiteName/HD/styles/custom.css"
              }
      ]
    

Clear the browser cache. Now, the new styles should be applied.

Anna Dorokhova
Plumsail Team