Changing the filter by page of search knowledge
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2016 07:22 AM
Anyone know how to add more fields to the filter by part of the search knowledge screen.
Using Helsinki Patch 4 with knowledge v3.
Out of the box there is the Knowlegde --> homepage which can be used as a good starting point for searching. If you find articles you can add more filters. We have added some extra fields to the knowledge articles (owner group, customers, CI types). Is there a way to add/remove fields to this part of the screen?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2017 04:36 PM
The KM v3 platform pages are not customizable. There is some configurability that can be achieved through the Knowledge properties.
Recommendation is to upgrade to H/I to use Service Portal experience to leverage customizability, however the stronger recommendation is to wait for Jakarta, where we have released a highly configurable end-user KM experience on the Service Portal.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2019 11:14 AM
Is this possible with kingston release.
I need to add a new filter for search.Could any one help me on this?
Thanks..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2019 10:46 PM
Use the KM SP plugin, and then you can easily configure the Knowledge end user experience, including search facets
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2019 12:39 PM
We are in London release and we would also like to hide the Author filter as well. We tried setting glide.knowman.search.show_author to false as discussed above. Similarly, we tried unchecking "Show author in knowledge search results" in Knowledge Properties.
Is it still possible to hide the Authors filter in London release? It feels like we are just missing something so if anyone can point us to the right direction, it would greatly be appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2019 04:45 AM
glide.knowman.search.show_author and other property are for hiding the author information from the search result content. It will not work for the facets.
If you need to remove the author facet follow below step:
For removing it from "Knowledge Portal" search page with URL "/kb?id=kb_search"
- Open the search page as admin
- ctrl + click on the widget
- Click "Page in Designer"
-Look for "Author" widget and delete the instance.
For removing it from "Service Portal" search page with URL "/sp?id=search"
- Open "sp_search_source" table
- Open "Knowledge Bases" search source
- Under "Facet generation script" remove the author property from the JSON passed to the
new KBPortalServiceImpl().getAllFacets function around line number 39-40
It will be something like this:
"author":{"aggregate":false,"include_null":false,"orderby":"label","table":"kb_knowledge","value":[]}
- And comment below code for author around line number 48
createVariableFacetFromKB("Author", "author", kbFacetObj.author, 'label');
Note : Below changes may result in customisation of the relevant script.