Search in product description by default

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
Some users don't see the 'search in product description' option that appears after you perform a search
The software is fine, is just that they don't 'see' that they have this option as well.

Is there any way when a search is performed, to search also in descriptions by default?

Thanks
13 years ago
look for modules/search.ascx    and add     Checked="True"     to the following lines

<asp:CheckBox runat="server" ID="cbAdvancedSearch" Text="<% $NopResources:Search.AdvancedSearch %>" Checked="True" />



<asp:CheckBox runat="server" ID="cbSearchInProductDescriptions" Text="<% $NopResources:Search.SearchInProductDescriptions %>" Checked="True" />


only downside is that it will slow down that initial search which was originally only looking in the product name for the search term

- hayden
13 years ago
That did it.

Thanks!
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.