How to hide Last updated time & how to know who has seen your KB article.

Obito
Tera Expert

Hi all,

We have KB article on GRC Policy. I want to know 2 things.

1) How to hide last updated time on front end. 

2) How to generate a report on who has seen any particular report.

 

Related Images : 

315.png

2 ACCEPTED SOLUTIONS

Mark Manders
Mega Patron

You can find who viewed the article in the kb_use table.


Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark

View solution in original post

Sid_Takali
Kilo Patron
Kilo Patron

Hi @Obito Use the below CSS code into your page specific CSS 

SiddharamTakali_0-1717148833653.png

 

SiddharamTakali_1-1717148888125.png

 

SiddharamTakali_2-1717148915895.png

 

 

div.published.published-date.pad-right.text-nowrap {
  display : none;
}
.views {
  display : none;
}

 

You can see in below screenshot, Time Stamp and View are hidden

SiddharamTakali_3-1717149085104.png

 

 

View solution in original post

3 REPLIES 3

Mark Manders
Mega Patron

You can find who viewed the article in the kb_use table.


Please mark any helpful or correct solutions as such. That helps others find their solutions.
Mark

Sid_Takali
Kilo Patron
Kilo Patron

Hi @Obito Use the below CSS code into your page specific CSS 

SiddharamTakali_0-1717148833653.png

 

SiddharamTakali_1-1717148888125.png

 

SiddharamTakali_2-1717148915895.png

 

 

div.published.published-date.pad-right.text-nowrap {
  display : none;
}
.views {
  display : none;
}

 

You can see in below screenshot, Time Stamp and View are hidden

SiddharamTakali_3-1717149085104.png

 

 

Thank you @Sid_Takali & @Mark Manders