XF 1.5 Search forum functions

SimonaB

Member
Hello everyone! I need help, if possible.
In the search form of the forum, when a user is in a discussion, the box "Search only in this section of the forum" appears already pre-barred. This confuses users who often fail to properly use the forum search box. Can this function be deactivated? Thank you.

Schermata 2018-01-02 alle 15.49.33.webp
 
You should still be able to do it like this.

Edit the search_bar_forum_only template. Remove the checked="checked", like so:
HTML:
<label title="{xen:phrase search_only_x, 'title={$forum.title}'}"><input type="checkbox" name="nodes[]" value="{$forum.node_id}"
    id="search_bar_nodes" class="Disabler AutoChecker"
    data-uncheck="#search_bar_thread" /> {xen:phrase search_this_forum_only}</label>
    <ul id="search_bar_nodes_Disabler">
        <li><label><input type="checkbox" name="type[post][group_discussion]" value="1"
            id="search_bar_group_discussion" class="AutoChecker"
            data-uncheck="#search_bar_thread" /> {xen:phrase display_results_as_threads}</label></li>
    </ul>
 
Back
Top Bottom