I've created my website, have ecommerce installed on it. When I create a new product, I give it a stock number, such as N98. When I search "N98" I get a "no items found" type message. However, when I search on the term "necklace" (of which N98 is), I get tons of results. Why??
I'm not sure about functionality built into blocks but filterByKeywords can set to simple mode which uses LIKE instead of MATCH.
//You'll have to adapt this for product list, I don't have core_commerce docs handy$pl=new PageList();// We pass true to use simple mode(LIKE)$pl->filterByKeywords($keywords,true);$pages=$pl->getPage();