How to Hide the add attachments button on a request item in the service portal

garethprice
Kilo Expert

Hi All

I want to hide the "add attachments" button on one of my service portal request items.

I've already hidden the submit button using the client controller in a widget using the following script.

function() {

  /* widget controller */

  var c = this;

  hideButtons();  

 

  function hideButtons(){  

  $('button[name="submit"]').hide();  

  }  

    }  

is there a way to also hide the add attachment button in the same way?

5 REPLIES 5

Were you successful in addressing this?