How to change the ammount of text (number of characters) displayed on search results page in the portalDescriptionThis article will explain how to change the amount of text (number of characters) displayed on search results in the service portal search page. This only applies to scripted search sources and specifically the Knowledge Base and Questions and Answers ones OOB. Release or EnvironmentService PortalResolution1) Navigate to service portal > portals and select the portal which has the search source you want to edit. 2) In the related list of the portal record, select the Search Source you want to edit. 3) Find the code which is returning the text. In the case of Knowledge Base, it is this. $sp.getRecordDisplayValues(article, kb, 'sys_id,number,short_description,published,text'); article.publishedUTC = kb.getValue('published'); article.type = "kb"; if (!article.text) article.text = ""; article.text = $sp.stripHTML(article.text) + ""; article.text = article.text.substring(0, 200); 4) Edit the line which is cutting down the text, which this: article.text = article.text.substring(0, 200); Additional InformationDocumentation on Search Sources. https://docs.servicenow.com/csh?topicname=add-table-search-source.html&version=latest