Hey, i solved the issue
As i already said, the lang attribute is used as a search parameter and that is the reason why the search result is always 0.
in file um-filters-members on 140 lines, i added
`foreach ( $query as $field => $value ) {
if($field == “lang”){
unset($query[$field]);
}`
And it is working after that.
-
This reply was modified 5 years, 6 months ago by fvukovic.