Disable "i" button for reference fields in service portal forms.

VNK1216
Tera Guru

Hello All,

We have a requirement to disable "i" button beside the field for reference fields.

We are able to disable it in native ui. However, we are not able to disable on service portal forms.

 

Thanks,

Naresh

3 REPLIES 3

Chandra Prakash
Tera Expert

Hi,

 

Please go through the below link

https://community.servicenow.com/community?id=community_question&sys_id=9b652348db7513807b337a9e0f9619a8

 

Mark correct or helpful if it is so.

Regards,

Chandra Prakash

SatheeshKumar
Kilo Sage

Hi,

You can add some css to your page to get this done, you can place this in Portal or Page or Widget

 

place the below code in your css section of widget or page or portal

 

 

.add-on > button.lookup {

  display:none;

}

.field-has-reference .reference {

 
      display: block;

 
}

 

THANKS,

SATHEESH

@SatheeshKumar Your comment helped but I only ended up using the following CSS on the page's CSS.

.add-on > button.lookup {
  display:none;
}