Remove the information button from the "who is impacted" reference field

ashok17
Tera Contributor

Hi All,

 

How to remove the information preview icon (i) symbol from the "who is impacted" field and this is the reference field form sys_user table. This is only particular one reference field. 

 

Please suggest how to achieve this requirement.

 

1 ACCEPTED SOLUTION

sure @ashok17  so first what you have to do is go to the page where this field is visible then right click on your page and click inspect as shown below 

swathisarang98_0-1707384094455.png

once done click on inspect and hover it over i icon then you will get a reference is as "sp_formfield_reference_<fieldname>"

swathisarang98_1-1707384258979.png

and after getting the id ctrl +right click you will get a pop up so from there click on "Instance in Page Editor

swathisarang98_2-1707384365621.png

 

There you will get a css page just add the code as below but change it as per required for your field

 

#sp_formfield_reference_add you field backend name > .add-on > button.lookup{
display:none;
}

 

save it and then try i icon will disappear 

 

Please check and Mark Helpful and Correct if it really helps you.

Regards,

Swathi Sarang

 

View solution in original post

6 REPLIES 6

sure @ashok17  so first what you have to do is go to the page where this field is visible then right click on your page and click inspect as shown below 

swathisarang98_0-1707384094455.png

once done click on inspect and hover it over i icon then you will get a reference is as "sp_formfield_reference_<fieldname>"

swathisarang98_1-1707384258979.png

and after getting the id ctrl +right click you will get a pop up so from there click on "Instance in Page Editor

swathisarang98_2-1707384365621.png

 

There you will get a css page just add the code as below but change it as per required for your field

 

#sp_formfield_reference_add you field backend name > .add-on > button.lookup{
display:none;
}

 

save it and then try i icon will disappear 

 

Please check and Mark Helpful and Correct if it really helps you.

Regards,

Swathi Sarang

 

Hi Swaithi

Thankyou for providing this solution and it's works me.