Posted - 03/05/2026 : 18:51:08
Ok, so your issue is not search by product ID, because that works. What you are after is search ONLY by product ID. What's happening is you have many product with "Lumina" in the name and with the search looking at Product ID's and product names, it's pulling those as well. I'm not sure if this is a good idea and how it will impact customers searching for products on your site, but there are some settings to limit what is searched,. quote: Streamlining / refining search results
You can use these parameters to refine or streamline what columns in the products database table are searched...
$nosearchdescription=TRUE;
$nosearchlongdescription=TRUE;
$nosearchsku=TRUE;
$nosearchparams=TRUE;
$nosearchprodid=TRUE; // (v7.2.1+)
$nosearcharticles=TRUE; // (v7.2.6+)
Set the ones in red there and I expect it will behave the way you want. However, it may not work well for your customers.  If it's just for you - clone the search page and name it something only you know, so customers do not see it. In the head, set a noindex so search engines do not index the page. In the body, just before the inc/incsearch.php call, place those parameters so they work for that page only. Then bookmark that page for your own personal use only. Thanks, David

|