Quote:
Originally Posted by sybakaos
Is there a way that, when filtering a forum by a certain category and choose "search this forum" it searches only the currently present threads?
|
Edit the
FORUMDISPLAY template and find:
Code:
<input type="hidden" name="childforums" value="1" />
Add below:
Code:
<if condition="$searchthreadprefix = $vbulletin->GPC['threadprefix']">
<input type="hidden" name="threadprefix" value="$searchthreadprefix" />
</if>
(you have to do this 2x)