How to show icons/images unique to each knowledge article on Service PortalSummaryThe use case is to provide a unique icon to each knowledge article and then render it on the Service Portal. **** This solution involves customization and shall be responsibility of customer/owner of the platform.****ReleaseThis has been developed and tested on New York. However, the changes are, more or less, version independent. InstructionsSteps to achieve this: Knowledge Base: Choose a knowledge base on which you'd like this to have.Go the the details and click on update for ICON field.Choose an image for the knowledge base and save it.The knowledge base should have an icon attached to it. Knowledge Article : Go to kb_knowledge table.Create a new column of type IMAGE (label- ICON) on the table and save it.Create an article and provide an image to it, that you'd like to show on the Portal for that article and save the article. Widget Instance : Go to the kb_search page of the Portal. Go to instance of Knowledge Results on the page . (https://instance.service-now.com/sp_instance.do%3Fsys_id%3Dfe379905db30320099f93691f0b8f571)Modify the knowledge_fields section in the Additional Options, JSON as below. "knowledge_fields": {"value": "author,sys_view_count,rating,u_icon","displayValue": "author,sys_view_count,rating,u_icon" }, Angular Template : Look for the template kb_result_article_summary in the sp_ng_template table. (https://instance.service-now.com/sp_ng_template.do?sys_id=1c873ab1db12220099f93691f0b8f5c1) Modify the section where it renders the image for the article. <img ng-if="article.meta.knowledgeBaseIcon" alt="" class="kb-icon" ng-src="{{article.meta.knowledgeBaseIcon}}"> to <img ng-if="article.meta.knowledgeBaseIcon" alt="" class="kb-icon" ng-src="{{article.meta.u_icon.display_value}}"> 3. Add the code <span ng-if="f != 'u_icon'"> above the <ng-switch-default section, to make sure the image name is NOT shown on the portal.4. Close it appropriately to make sure complete switch is within the new IF. <span ng-if="f != 'u_icon'"><span ng-switch-default="" ng-switch="article.meta[f].type"><span ng-if="!$first" class="dot" aria-hidden="true"> • </span><span class="secondary-label hidden-sm hidden-xs" ng-if="c.options.show_secondary_fields_label">{{::article.meta[f].label}} : </span><span ng-switch-when="glide_date"><sn-time-ago timestamp="::article.meta[f].value" /></span><span ng-switch-when="glide_date_time"><sn-time-ago timestamp="::article.meta[f].value" /></span><span ng-switch-default="">{{article.meta[f].display_value}} </span></span></span> Property : Enable the below property IF you'd like to render the icons on the Portal without necessity to login. glide.image_provider.security_enabled