For anyone who is interested, I wanted to add this to the forumdisplay as well. This way it could be ignored without having to go into the thread if the user wants, it also prompts them, just in case. Here's how I did it:
In the threadbit template find
Code:
<if condition="$show['moderated'] OR $show['deletedthread'] OR $show['paperclip'] OR $show['subscribed'] OR $show['sticky'] OR $show['rexpires']">
Add this just above it
Code:
<span style="float:$stylevar[right]">
<a href="javascript:decision('Are you sure you want to ignore this thread?',
'profile.php?$session[sessionurl]do=ignorethread&threadid=$thread[threadid]&forumid=$thread[forumid]')"><img class="inlineimg" src="$stylevar[imgdir_misc]/hide.gif" alt="Ignore this thread" border="0" /></a>
</span>
Now add this to the header template at the very bottom
Code:
<!-- Confirm Ignore Thread -->
<SCRIPT LANGUAGE="Javascript">
<!---
function decision(message, url){
if(confirm(message)) location.href = url;
}
// --->
</SCRIPT>
<!-- /Confirm Ignore Thread -->
Add the attached hide.gif (x) image to your images/misc directory