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
Tera Patron

or 

LearnNGrowAtul_1-1704446558028.png

 

@Steven Watts2 

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

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/atul_grover_lng [ Connect for 1-1 Session]

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

View solution in original post

4 REPLIES 4

Community Alums
Not applicable

HI @Steven Watts2 ,

Just try with 

.invitations{

display: none;

}

 

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @Steven Watts2 

 

It is a record producer

 

LearnNGrowAtul_0-1704446395678.png

 

You can make active false in variable.

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

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/atul_grover_lng [ Connect for 1-1 Session]

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

Dr Atul G- LNG
Tera Patron
Tera Patron

or 

LearnNGrowAtul_1-1704446558028.png

 

@Steven Watts2 

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

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/atul_grover_lng [ Connect for 1-1 Session]

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

Steven Watts2
Tera Guru

Thanks both.

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

Steven