MyBB Community Forums

Full Version: Defaults search method to title
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I'd like to set the default search method to 'search titles only' instead of 'search entire post'.

How can I achieve this?

Thank you!
Where?
In the search page or in the quick search?
(2014-03-11, 08:04 PM)effone Wrote: [ -> ]Where?
In the search page or in the quick search?

Search page Smile
Template:

Search Templates > search

Find:
<span class="smalltext"><input type="radio" class="radio" name="postthread" value="1" checked="checked" />{$lang->search_entire_post}<br /><input type="radio" class="radio" name="postthread" value="2" />{$lang->search_titles_only}</span>

Replace with:
<span class="smalltext"><input type="radio" class="radio" name="postthread" value="1"  />{$lang->search_entire_post}<br /><input type="radio" class="radio" name="postthread" value="2" checked="checked"/>{$lang->search_titles_only}</span>