YAFLogo

OBrian
  • OBrian
  • 50.8% (Neutral)
  • YAF Forumling Topic Starter YAF Version: 3.2.8
6 days ago
Hi,

we use YAF since 2013 and had the 2018 Release Version 2.2.4.14 for the longest time (until a few days ago when we switched server and thought maybe we should update 😉 ).

Now with the latest release there a lot of changes which are alien to us, but one new feature we would love to revert is that instead of plain text when the last post was, there is now this i (information) icon. Since you need to hover over it to get the information, I wondered if it is possible to disable the icon and go back to just plain text?

Any help would be appriciated.

Thank you in advance and kind reards

Patrick

Sponsor
tha_watcha
  • tha_watcha
  • 100% (Exalted)
  • YAF.NET Project Lead 🤴 YAF Version: 4.0.1 BETA
5 days ago
Well there is no option to turn it of. But you can do it via javascript.

Just add the following js to the site...

​ for (const lastpost of document.querySelectorAll('.topic-link-popover')) {
     lastpost.innerHTML = lastpost.dataset.bsContent;
 }