Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Это косяк самого движка. После обновления у меня тоже перестала работать эта фича. Нужно заменить функцию getSearches в файле oc-includes/osclass/model/LatestSearches.phpПодскажите пжл как реализовать отображение последних запросов как здесь:
Посмотреть вложение 118590
покапавшись в настройках никак не смог реализовать
Работает на osclass v8.2.1, используя Epsilon тему 1.2.4 (на 1.4.2 тоже не смог настроить)
public function getSearches($limit = 20, $sort = 'd_date') {
$this->dao->select('s_search, MAX(d_date) as d_date, COUNT(s_search) as i_total');
$this->dao->from($this->getTableName());
$this->dao->groupBy('s_search');
$this->dao->orderBy($sort, 'DESC');
$this->dao->limit($limit);
$result = $this->dao->get();
if($result == false) {
return false;
}
$data = $result->result();
$output = array();
if(is_array($data) && count($data) > 0 && osc_latest_searches_restriction() <> 0 && osc_latest_searches_words() <> '') {
foreach($data as $row) {
$word = osc_latest_search_filter($row['s_search']);
if($word <> '') {
$output[] = $row;
}
}
return $output;
}
return $data;
}