We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

Hide fields on form widget in Service Portal

Steven Watts2
Tera Guru

Hi,

 

How can I hide the field highlighted below in the screenshot, Meeting Invitations.

StevenWatts2_0-1704444932923.png

I was expecting to be able to hide this via the CSS in the instance of the widget but I've been unsuccessful in my attempts. For example I've tried hiding the Invitations div but the field is still displayed.

.invitations{
  display: none !important;
}

Regards,

 

Steven

1 ACCEPTED SOLUTION

Dr Atul G- LNG
Tera Patron

or 

LearnNGrowAtul_1-1704446558028.png

 

@Steven Watts2 

*************************************************************************************************************
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/dratulgrover [ Connect for 1-1 Session]

****************************************************************************************************************

View solution in original post

4 REPLIES 4

Not applicable

HI @Steven Watts2 ,

Just try with 

.invitations{

display: none;

}

 

Dr Atul G- LNG
Tera Patron

Hi @Steven Watts2 

 

It is a record producer

 

LearnNGrowAtul_0-1704446395678.png

 

You can make active false in variable.

*************************************************************************************************************
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/dratulgrover [ Connect for 1-1 Session]

****************************************************************************************************************

Dr Atul G- LNG
Tera Patron

or 

LearnNGrowAtul_1-1704446558028.png

 

@Steven Watts2 

*************************************************************************************************************
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/dratulgrover [ Connect for 1-1 Session]

****************************************************************************************************************

Steven Watts2
Tera Guru

Thanks both.

I've been able to hide the field with the suggestions above.

Steven