Disable Standard Knowledge Template from kb_knowledge_create.doIssue When creating a knowledge article, users have the option to switch to an updated version of the page. If they switch to the updated version, the standard change template is available. We do not want users to see or use the standard knowledge template, only the knowledge template. The record is set to false but it still shows in the new version of the page. Please see attachedCauseIt is coming in as a constant from the Platform and cannot be disabled on New Creator (kb_knowledge_create.do) UI Page.Reason could be that the older versions of your articles are being set as Standard templateUse either the standard template or one of the pre-defined How To, What Is, FAQ or KCS article templates. When you upgrade Knowledge Management to Kingston or later releases, all existing articles from the earlier version automatically use the standard template of the upgraded version. For example, if you upgrade Knowledge Management from Jakarta to Kingston, all existing articles use the standard template available in the Kingston version.https://docs.servicenow.com/csh?topicname=knowledge-article-templates.html&version=latestResolutionThis is not editable as it is coming in from platform for the New Version and what we see this is kept as non-editable so that the older versions of Articles are enabled with this TemplateIn the older version you can edit the Interceptor on the wizard and set it to false but this does not work for the newer View from UI Page kb_knowledge_create.doThis is as Designed on Platform. WORKAROUNDDevelopment has suggested this workaround :Apply this workaround on overriding the method in "ArticleTemplateUtil" Script Include Change the below code by overridding this function:"if(addNames)templates['kb_knowledge'] = gs.getMessage('Standard');elsetemplates['kb_knowledge'] = true;"TO"if (!addNames)templates['kb_knowledge'] = true;"Basically a callback will be triggered to get all article templates given the KB's Id when user is clicking a Knowledge Base. The current implementation is iterating all keys in "templates" object then rendering the templates list, thus, removing the line for adding standard template into "templates" object is the right way to hide it.