- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2020 02:17 PM
Hello all,
Does anyone know how to hide the number shown next to Knowledge categories on the portal?
Thanks!
Mike
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2020 02:52 PM
Navigate to the designer view of KB_view2 page and open it in designer view. Click on Pen Icon in KB Categories - KBv3 and select Omit Badge counts.
This will remove the count from the widget
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-08-2020 02:59 PM
Hello Jaspal, sorry, I missed that reply!
I just tried it and it did not hide the KBA counts.
Here is what I entered:
----------------------------------
<ul class="list-group category-list" role="list" aria-label="${Categories}">
<li role="listitem"
class="list-group-item text-overflow-ellipsis"
ng-include="'category-template.html'"
ng-repeat="category in c.data.categories track by category.value ">
</li>
</ul>
----------------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-08-2020 10:41 AM
Not sure why it did go away but looking at the code, title options is is not defined in widget.
Open the widget in it's code view and add a new option like below image and it should work.
You can also achieve same by adding below part in options schema field.
{"name":"title","section":"other","default_value":"Categories","label":"Title","type":"string"}
Please mark it correct if it fixes your issue or else mark it helpful, if it helped reaching your solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-17-2020 02:07 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-17-2020 02:33 PM
Hi
Sorry my mistake. For got about fields in the widget.
1- Please scroll down to instance related list in your widget record
2- Add color field in the related list(If it is not there) using setting icon
3- set color to same as oob widget (I believe it is primary blue color)
This should set up the correct color.
In case you want your current widget to behave as much near to your current widget
1- you can also remove the new Title option (You created) and update Title(Categories) in instance related list.
Let me know if I am unable to explain.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-21-2020 01:48 PM