XF 2.2 Search Titles Only Default

It requires editing two templates.

For the quick search in the nav, edit the PAGE_CONTAINER template.
From:
HTML:
<xf:option name="c[title_only]">

To:
HTML:
<xf:option name="c[title_only]" checked="checked">


For the advanced search edit the search_form_macros template
From:
HTML:
<xf:option name="c[title_only]" selected="{$input.c.title_only}">

To:
HTML:
<xf:option name="c[title_only]" selected="{$input.c.title_only}" checked="checked">
 
Top Bottom