How to Hide Author, Views, Last Modified and Rating in the AI Search Assist WidgetIssue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } The AI Search Assist widget (sys_id=66135172671e1010b3d782f45685ef9e) displays the Author, Views, Last Modified, and Rating information. This knowledge base article describes the method to hide these elements. Example of displayed information: Open the Employee Center portal [/esc].Open Record Producer - Create Incident.Enter text in "Please describe your issue below".KB articles are searched, and the AI Search Assist widget displays Author, Views, Last Modified, and Rating. Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } As of Yokohama release Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } The AI Search Assist widget references properties in the server script. By setting these properties to false, you can hide the aforementioned elements. Server script: data.kbProperties = { show_author: (gs.getProperty("glide.knowman.search.show_author", false) == "true") || false, show_article_number: (gs.getProperty("glide.knowman.search.show_article_number", false) == "true") || false, show_category: (gs.getProperty("glide.knowman.search.show_category", false) == "true") || false, show_relevance: (gs.getProperty("glide.knowman.search.show_relevancy", false) == "true") || false, show_last_modified: (gs.getProperty("glide.knowman.search.show_last_modified", false) =="true") || false, show_published: (gs.getProperty("glide.knowman.search.show_published", false) == "true") || false, show_unpublished: (gs.getProperty("glide.knowman.show_unpublished", false) == "true") || false, show_view_count: (gs.getProperty("glide.knowman.search.show_view_count", false) == "true") || false, show_rating: (gs.getProperty("glide.knowman.search.show_rating", false) == "true") || false }; Change the following properties and verify the behavior: Author - glide.knowman.search.show_authorViews - glide.knowman.search.show_view_countLast modified - glide.knowman.search.show_last_modifiedRating - glide.knowman.search.show_rating The result of setting these properties to false is as follow. Refer to the following for more information: Knowledge Management propertiesConfigure AI Search Assist for a record producerAI Search Assist widget