ALL Products are shown in basic search results

Ok, with help from a friend I have something for you to try:

This should be as easy as enabling the unified search for the module. The AOD already indexes most of the fields for the modules that are enabled.

There are some modules that are on the AOD black list like:

“AOD_IndexEvent”,“AOD_Index”,“AOW_Actions”,“AOW_Conditions”,“AOW_Processed”,“SchedulersJobs”

For the Products module you should create a file like custom/Extension/modules/AOS_Products/Ext/Vardefs/UnifiedSearch.php

Enable the unified search, something like :


<?php
$dictionary['AOS_Products']['unified_search'] = true;
$dictionary['AOS_Products']['full_text_search'] = true;
$dictionary['AOS_Products']['unified_search_default_enabled'] = true;
?>

I think this is all you need, let me know if you have problems.