Hi All I have my own source code and I'm implementing and advanced search form where a person can check off options what they are looking for ( HTML checkboxes ). The end result is that I want to do a query search using BOOLEAN OR...
Example:
Return results from all content where picture = "house" OR picture = "cat"
So based on the advanced search tutorial, I can get STATIC code working like this..
and this does not work..because its not evaluating the subfilter. and this does not work either
$query = $query->filter( XN_Filter::any( 'house', 'cat' ));
Does anyone have any examples of BOOLEAN OR dynamic queries or have examples of how 'ANY' works.