Hi smousionis,
When you search with case “Any”, it ignore fields in search value. So, it search all items of category associated extrafields config.
In the case, file “jak2_filter.php”, find line 339:
[PHP]if (count($sql) > 0) {
$query .= “WHERE ” . implode(” AND “, $sql);
}[/PHP]
add after it
[PHP]$mainframe = JFactory::getApplication();
if (K2_JVERSION == ’16’ && $mainframe->isSite() && $mainframe->getLanguageFilter())
{
$languageTag = JFactory::getLanguage()->getTag();
$query .= ” AND c.language IN (“.$db->Quote($languageTag).”, “.$db->Quote(‘*’).”) AND i.language IN (“.$db->Quote($languageTag).”, “.$db->Quote(‘*’).”) “;
}[/PHP]
Thanks.