Deleting Knowledge Categories
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2016 11:05 AM
We are trying to delete Knowledge Categories that are not associated with any articles. The "Delete" function is grayed out. Could you provide info about what steps to take?
- Labels:
-
Knowledge Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-13-2016 11:14 AM
Hi,
You can write a script to delete the records from the kb_category table. But qst make sure you should query only the records those you want to delete.
var gr = new Gliderecord('kb_category');
gr.addQuery(<your query to get the record>);
gr.query();
while(gr.next()){
gr.deleteMultiple();
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-16-2016 02:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-22-2016 09:04 AM
You could create an User criteria which includes you / group of users that should be able to delete categories and then, assign that User Criteria in the related lists "can write" and "can contribute".
If you need to create a new User criteria, you can do it directly from the foretold related lists, by clicking on the "New" UI Action.
Hope that makes sense.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-18-2017 05:17 AM
How to Delete empty Categories in Fuji Knowledge Base
Please mark this as correct, if this helps you.
Thanks
Rohant Joshi