Search on full organization name
Say you have an organization called 'New Company'. When doing a search on te word 'new', the organization is found. When doing the search on 'Company', a 'no results found' is returned.
13
votes
This has been released in our latest advanced search updated
1 comment
-
Tom Walker commented
This would likely be an easy change... if you use PHP/MySQL it would be from "WHERE field_name LIKE '{$search_words}%'" to "WHERE field_name LIKE '%{$search_words}%' (just add a '%' before the search term). Good suggestion.