search1="user_name like %brian% || user_name like %brad%"
So you use the double pipe || to indicate that you want to have the core search on either of those items.
Note that the support does come with one requirement: You must search on the same FIELD in your OR conditions - i.e. this would NOT work:
search1="user_name like %brian% || user_email like %brad%"
Since we are searching for "user_name" in the first part, and "user_email" in the second. ALL search fields in an OR condition must be the same.
Let me know if you guys see any issues.
Thanks!
--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
updated by @brian: 12/06/13 10:52:16AM