ほぼパクりだけど。
参考
【ECCUBE 3】検索対象を増やす。 ~ ネットショップの立ち上げから運営までの作業ログ
環境
ECCUBE3.0.18
やる
どれ
/public_html/inokura2020/src/Eccube/Repository/ProductRepository.php
before
->andWhere(sprintf('NORMALIZE(p.name) LIKE NORMALIZE(:%s) OR NORMALIZE(p.search_word) LIKE NORMALIZE(:%s)', $key, $key))
after
->andWhere(sprintf ('p.name LIKE :%s OR p.search_word LIKE :%s OR p.description_detail LIKE :%s', $key, $key, $key))
まとめ的なもの
他の項目も対象にできる。
【3.0.15】「商品説明」などの内容も検索対象にする方法 | NAKWEB × EC-CUBE
コメント