In case this helps, I had Claude put together a small script that replaces the "x days ago" text with the actual date on topic pages. Insert before the </body> tag in Third Party Scripts:
<script> window.addEventListener('load', function() { var i = 0, t = setInterval(function() { document.querySelectorAll('time.qa-latest-post-time[datetime]:not([data-dr])').forEach(function(el) { var p = el.getAttribute('datetime').split('-'); el.textContent = new Date(p[0], p[1]-1, p[2]).toLocaleDateString('en-US', {month:'long', day:'numeric', year:'numeric'}); el.setAttribute('data-dr', '1'); }); if (++i >= 20) clearInterval(t); }, 300); }); </script>
this only targets the "x days ago" timestamp on topic pages, not the relative dates on replies, or the "x months/years ago" on homepage tiles or featured content. But it's a start while we wait for a native solution! 😊
I would like this as well. Plus the ability to sort by said date (and views) in every app surface consistently - Forums, Knowledge Articles, Groups, Events, etc.
In case this helps, I had Claude put together a small script that replaces the "x days ago" text with the actual date on topic pages. Insert before the </body> tag in Third Party Scripts:
<script> window.addEventListener('load', function() { var i = 0, t = setInterval(function() { document.querySelectorAll('time.qa-latest-post-time[datetime]:not([data-dr])').forEach(function(el) { var p = el.getAttribute('datetime').split('-'); el.textContent = new Date(p[0], p[1]-1, p[2]).toLocaleDateString('en-US', {month:'long', day:'numeric', year:'numeric'}); el.setAttribute('data-dr', '1'); }); if (++i >= 20) clearInterval(t); }, 300); }); </script>
this only targets the "x days ago" timestamp on topic pages, not the relative dates on replies, or the "x months/years ago" on homepage tiles or featured content. But it's a start while we wait for a native solution! 😊
If you ever had a profile with us, there's no need to create another one. Don't worry if your email address has since changed, or you can't remember your login, just let us know at community@gainsight.com and we'll help you get started from where you left.
Else, please continue with the registration below.