***CORRECTED***
Hi,
Try this:
Add this at the very bottom of your theme functions.php (take care not to leave blank lines after this):
<?php
function cust_search_keyword_wildcard() {
$mSearch = Search::newInstance();
$query_elements = (array) json_decode($mSearch->toJson());
$query_elements['sPattern'] = str_replace(' ', '* ', $query_elements['sPattern']) . '*';
$mSearch->setJsonAlert($query_elements);
}
if (Params::getParam('sPattern')) osc_add_hook('search_conditions', 'cust_search_keyword_wildcard');
?>
Regards