14Jul/101
Remove Custom Option data from catalogsearch_fulltext table in the Magento database
When you Rebuild Search Index you may notice Custom Option data in that catalogsearch_fulltext table. This can be turned off by editing the file app/code/core/Mage/CatalogSearch/Model/Mysql4/Fulltext.php. Around line 524 comment out the following 3 lines:
if ($data = $typeInstance->getSearchableData($product)) {
$index = array_merge($index, $data);
}



September 29th, 2010 - 13:25
Thanks for provide this very helpfull and knowledgeble,