Knowledge Base Home page - how can we remove the published date
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2014 06:34 AM
On our Knowledge Base homepage we have a column for the short description and another column for when an KB article was published. We want to remove the Published column.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2016 03:58 AM
Hi,
I want to answer this in common with you
Regard,
Suchawadee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2016 04:18 AM
sys_properties table:
description = 'glide.knowman.search.show_published'
Set that record to value = false
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-25-2016 03:00 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2016 09:12 PM
the kb_section.xml is OOTB so doesn't look like you can modify it. You can either create your own UI Macro to replace the original kb_section.xml one, or you can try to put this in the kb_home UI page's client script which should hide the published date using jquery.
This jquery snippet would only hide the cell that contains the published date:
$j('.kb_linkable_cell').next().hide();
This jquery snippet would actually remove it from the DOM:
$j('.kb_linkable_cell').next().remove();