This pretty much works in 3.84 PL2. The only part that doesn't work is the unfilter link never shows up. Otherwise this filters the threads just like it is supposed to.
Once I figure out how to get that to work properly I will post the fix. For now you can do this:
On the last step of the instructions it says..
Code:
vB AdminCP -> Styles & Templates -> Style Manager -> (Select Style) -> Forum Display Templates -> FORUMDISPLAY
NOTE: there are 2 <if condition="$show['threadicons']"> lines. The 2nd one (that is preceded by <tr>) is the one to replace.
FIND:
<tr>
<if condition="$show['threadicons']">
<td class="thead" colspan="2"> </td>
<else />
<td class="thead"> </td>
</if>
REPLACE with:
<tr>
<if condition="$show['threadicons']">
<if condition="$picon">
<td class="thead" colspan="2"><a href="$noiconurl">Unfilter</a></td>
<else />
<td class="thead" colspan="2"> </td>
</if>
<else />
<td class="thead"> </td>
</if>
I simply changed it to this which ALWAYS displays the unfilter link (which just refreshes the page if they haven't filtered):
Code:
<if condition="$show['threadicons']">
<if condition="$picon">
<td class="thead" colspan="2"><a href="$noiconurl">Unfilter</a></td>
<else />
<td class="thead" colspan="2"><a href="$noiconurl">Unfilter</a> </td>
</if>
<else />
<td class="thead"> </td>
</if>
Also note, on that last part of the instructions it mentions <tr>, those weren't in my template so I left that out.