Hi,
When I search for "BMW 2010 M5" on your website, I get plenty of results containing both BMW and 2010 in the product name.
M5 is ignored because it has less than 3 letters:
www.gavick.com/blog/search-word-limit-in-joomla-no-more/
That's a limitation of Joomla itself, not HikaShop. You'll have to modify the joomla code to take into account 2 letters words.
That can be done in the code:
public static function getLowerLimitSearchWord()
{
return 3;
}
of the file languages/en-GB/en-GB.localise.php
I actually get the first 50 results for BMW and 2010 and there is likely a lot more of results, including the ones for M5.
The limit of 50 results can actually be increased in the options of the plugin.
So as far as I can see, it's working as it should, on HikaShop's end.