Auto Complete product name field on quotation issue

When I try to insert a product name in quotes that have underline, autocomplete changes the _ to - and doesn’t allow me to enter products with _ in the name. However through the popup I can insert the product. I searched for solutions in forums, but found nothing, does anyone have any solution to this problem?

I found the problem,the mysql uses underscore as a wildcard for one character like %, when it searches underscore, it returns items with hifen (-) and nearby characters, I need to escape the underscore character, when the query has an underscore, using , but I can’t find which file and where to make this change

I already soved the problem, i inserted the line sQuery = sQuery.replace(’’,’\’) on include\javascript\quicksearch.php!!

1 Like