Can you enable Anonymous Chat in a different portal than the default /cspIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } table tr td { padding: 15px; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } hr{ border-top-width: 1px; border-top-style: solid; border-top-color: #cccccc; } ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Overview This article will address the question about the possibility of setting up Anonymous Chat with a service portal other than the Consumer Service Portal (/csp) which is where the Anonymous Chat functionality works by default. Information Anonymous Chat was built for the Consumer Service Portal and is only supported in that environment. It was never the intention to have it used in other portals and therefore is not a ServiceNow supported configuration when used there. Additional Information If you choose to try and copy the setup of Anonymous Chat in a different portal it is defined in the header of the /csp portal. This is the out-of-box record which contains the code: /sp_header_footer.do?sys_id=451ffe6e3b103200367aee1234efc415 Here is the function within the client script: $scope.openAnonymousChatPopUp = function() { var url = "com.glideapp.servicecatalog_cat_item_view.do?v=1&sysparm_id=2ee88dafdb416200f6c270f5bf9619cf&sysparm_domain_restore=false&sysparm_stack=no&sysparm_queue_id=3a40c019c333120071d07bfaa2d3ae17"; popupCenter (url, "chat_popup", 650, 580); }; Here is the HTML: <li ng-if="(!user.logged_in && isCSPPortal() && page.id != portal.login_page_dv)" class="hidden-xs"> <a href ng-click="openAnonymousChatPopUp()" aria-label="${Live Chat}"><i class="fa fa-comment"/></a> </li> As mentioned before, adding this to another portal may not function exactly as the Anonymous Chat plugin.