Jeg fandt svaret på codeigniter like og or_like problem på ellislab forum https://ellislab.com/forums /viewthread/185983/ I stedet for at bruge
$this->db->like('location', $your_string);
brug:
$this->db->where('location LIKE', '%'.$your_string.'%');
og eller_hvor i stedet for or_like .