Здравствуйте!
Не хватает знаний...
В общем, мне нужно вывести значения с первого поля, у меня это получилось, но если оно пустое, то как вывести второе, я не знаю...
Поле: $result['short_name'] если пусто то вывести $result['name']
Вот кусок кода
$data['products'][] = array(
'product_id' => $result['product_id'],
'thumb' => $image,
'thumb_width'=>$this->config->get('theme_' . $this->config->get('config_theme') . '_image_product_width'),
'thumb_height'=>$this->config->get('theme_' . $this->config->get('config_theme') . '_image_product_height'),
'name' => $result['short_name'],
'description' => utf8_substr(trim(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8'))), 0, $this->config->get('theme_' . $this->config->get('config_theme') . '_product_description_length')) . '..',
'price' => $price,
'special' => $special,
'css' => '',
'type' => '0',
'tax' => $tax,
'gift' => $result['gift'],
'minimum' => $result['minimum'] > 0 ? $result['minimum'] : 1,
'rating' => $result['rating'],
'href' => $this->url->link('product/product', 'path=' . $this->request->get['path'] . '&product_id=' . $result['product_id'] . $url)
);