rveram Member Dec 4, 2015 #1 I want to enable by default the "search titles only" on the search bar so my users don't have to manually check this box. I was wondering is it possible? Thank you all for your help.
I want to enable by default the "search titles only" on the search bar so my users don't have to manually check this box. I was wondering is it possible? Thank you all for your help.
Chris D XenForo developer Staff member Dec 4, 2015 #2 In the search_bar template, find: Code: <li><label><input type="checkbox" name="title_only" value="1" and replace with: Code: <li><label><input type="checkbox" name="title_only" value="1" checked="checked" Upvote 0 Downvote
In the search_bar template, find: Code: <li><label><input type="checkbox" name="title_only" value="1" and replace with: Code: <li><label><input type="checkbox" name="title_only" value="1" checked="checked"