При добавлении нового товара вылазит ошибка модификатора:
Warning: Division by zero in /var/www/name/data/www/name/system/storage/modification/catalog/controller/extension/module/latest.php on line 62
Которая ведет к этой строчке:
$data['products'][] = array(
'percent' => sprintf($this->language->get('-%s'), (round((($result['price'] - $result['special'])/$result['price']) * 100 ,0 ))) . ' %', //эта строчка
'product_id' => $result['product_id'],
'thumb' => $image,
'name' => $result['name'],
'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get($this->config->get('config_theme') . '_product_description_length')) . '..',
'price' => $price,
'special' => $special,
'tax' => $tax,
'rating' => $rating,
'href' => $this->url->link('product/product', 'product_id=' . $result['product_id'])
);
Это может быть связано с переводом?