Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

How to remove response summary on csp portal for non-login user

nunavathv
Tera Contributor
 
2 REPLIES 2

Jagadish_KK
Tera Contributor

In the "Page Designer", find the Response Summary widget/container.
Use the window.NOW.user_id or sp.isLoggedIn() (if custom widget) and Set condition like :
if (!$root.user.loggedIn) return false;

and check please

Can you please explain it in brief?