XF 1.4 Replace Browser Tooltip with XenForo Tooltip in Latest Box

Amaury

Well-known member
Not entirely sure if this will be implemented yet, but one of our members suggested replacing this with a XenForo tooltip. How would this be accomplished?

Tooltip.webp

Thanks!
 
Hi,

Yes, it's possible. Go to the templates of your style and search for "node_forum_level_2". Now, search this line of code:
Code:
<span class="lastThreadTitle"><span>{xen:phrase latest}:</span> <a href="{xen:link posts, $forum.lastPost}" title="{$forum.lastPost.title}">{$forum.lastPost.title}</a></span>

and replace with:
Code:
<span class="lastThreadTitle"><span>{xen:phrase latest}:</span> <a href="{xen:link posts, $forum.lastPost}" class="Tooltip" title="{$forum.lastPost.title}">{$forum.lastPost.title}</a></span>

Screenshot_1.webp
 
Top Bottom