Hi,
AddFilter adds AND another filter to the search
Is it possible to add OR to the current search?
You need to write your own codes. For example, assuming both $filter and $newfilter is not empty, something like:$filter = “(” . $filter . “) OR (” . $newfilter . “)”;