- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 01:40 AM
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 :
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 01:48 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 02:47 AM - edited ‎05-31-2024 02:48 AM
Hi @Obito Use the below CSS code into your page specific CSS
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 01:48 AM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 02:47 AM - edited ‎05-31-2024 02:48 AM
Hi @Obito Use the below CSS code into your page specific CSS
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 03:30 AM - edited ‎05-31-2024 03:31 AM
Thank you @Sid_Takali & @Mark Manders