Jag hittade svaret för codeigniter like och or_like problem på ellislab forum https://ellislab.com/forums /viewthread/185983/ Istället för att använda
$this->db->like('location', $your_string);
använd:
$this->db->where('location LIKE', '%'.$your_string.'%');
och eller_var istället för eller_gilla .