MyBB Community Forums

Full Version: [Thread Preview] Where do I put this part?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I got this plugin: https://community.mybb.com/mods.php?acti...w&pid=1203

In the documentation it says this:

3. Go to forumdisplay_thread template.  Locate the line that has the thread subject.  Add the following to the element (span or a as you wish):
onmouseover="make_visible({$thread['tid']})" onmouseout="make_hidden({$thread['tid']})"

When I put 'onmouseover="make_visible({$thread['tid']})" onmouseout="make_hidden({$thread['tid']})"' anywhere it doesn't do anything. Just adds that text to the title (like 'onmouseover="make_visible({$thread['tid']})" onmouseout="make_hidden({$thread['tid']})" Test')

How can I make it work??!



I had the same problem as I didn't quite get it where to put it so asked the dev himself a week ago and replied that it should look like this:

<a href="{$thread['threadlink']}" onmouseover="make_visible({$thread['tid']})" onmouseout="make_hidden({$thread['tid']})">{$thread['subject']}</a>