Чуть чуть изменить в контроллер
public function autocomplete() {
$json[] = array(
'product_id' => $result['product_id'],
'name' => strip_tags(html_entity_decode($result['name'], ENT_QUOTES, 'UTF-8')),
'model' => $result['model'],
заменить на
$json[] = array(
'product_id' => $result['product_id'],
'name' => $result['model']. ' '. strip_tags(html_entity_decode($result['name'], ENT_QUOTES, 'UTF-8')),
'model' => $result['model'],
Кроме того
в представлении
$('input[name=\'related\']').autocomplete({
delay: 500,
source: function(request, response) {
$.ajax({
url: 'index.php?route=catalog/product/autocomplete&token=<?php echo $token; ?>&filter_name=' + encodeURIComponent(request.term)+'&filter_model='+encodeURIComponent(request.term),
Вот как-то так