Knowledge Base Home page - how can we remove the published date

smorri
Giga Expert

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.

16 REPLIES 16

schd
Mega Contributor

Hi,


I want to answer this in common with you




Regard,


Suchawadee


kyleb13281
Kilo Expert

sys_properties table:


description =   'glide.knowman.search.show_published'


Set that record to value = false


schd
Mega Contributor

Hi,


I follow you say but still show published date


follow the image :


Picture1.png


Thanks,


Suchawadee


Jon Barnes
Kilo Sage

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();