Лучше выложите пожалуйста свой итем с хаками, мне кажется с учетом моих правок я что-то мог исключить и где-то накосячил...
У меня много там своего и хиты отключены и прочее 
Поэтому просто замените функцию:

public function getByCategory($application_id, $category_id, $published = false, $user = null, $orderby = "", $offset = 0, $limit = 0, $ignore_order_priority = false) {
// get database
$db = $this->database;
// get dates
$date = $this->app->date->create();
$now = $db->Quote($date->toSQL());
$null = $db->Quote($db->getNullDate());
// get item ordering
list($join, $order) = $this->_getItemOrder($orderby, $ignore_order_priority);
$query = "SELECT a.id"
." FROM ".$this->name." AS a"
." LEFT JOIN ".ZOO_TABLE_CATEGORY_ITEM." AS b ON a.id = b.item_id"
.($join ? $join : "")
." WHERE a.application_id = ".(int) $application_id
// zoo_hack_start
// ." AND a.".$this->app->user->getDBAccessString($user)
.($published == true ? " AND a.state = 1" : "")
//." AND (a.publish_up = ".$null." OR a.publish_up <= ".$now.")"
//." AND (a.publish_down = ".$null." OR a.publish_down >= ".$now.")": "")
// zoo_hack_end
." AND b.category_id ".(is_array($category_id) ? " IN (".implode(",", $category_id).")" : " = ".(int) $category_id)
." GROUP BY a.id"
.($order ? " ORDER BY " . $order : "")
.($limit ? " LIMIT ".(int) $offset.",".(int) $limit : "");
$list = $this->app->database->queryAssocList($query);
$itemOrig = array_reduce($list, function($acc, $item){
$acc[] = $item['id'];
return $acc;
}, []);
$list = JBModelItem::model()->getZooItemsByIds($itemOrig);
$list = $this->app->jbarray->sortByArray($list, $itemOrig);
return $list;
}