Ik vond het antwoord voor codeigniter like en or_like probleem op ellislab forum https://ellislab.com/forums /viewthread/185983/ In plaats van
. te gebruiken$this->db->like('location', $your_string);
gebruik:
$this->db->where('location LIKE', '%'.$your_string.'%');
en of_where in plaats van or_like .