Amaury Well-known member Mar 10, 2015 #1 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? Thanks!
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? Thanks!
D Dylan V Well-known member Mar 12, 2015 #2 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> Upvote 0 Downvote
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>