Выводим размеры в карточке товара, если размеры не указаны — ничего не выводим в соответствующем поле.
Для начала берем файл:
catalog/language/russian/product/product.php
в нем найти
$_['text_error'] = 'Товар не найден!';
добавить после
$_['text_dimension'] = 'Размеры (Д*Ш*В):';
следующий файл:
catalog/language/english/product/product.php
ищем
$_['text_error'] = 'Product not found!';
добавить после:
$_['text_dimension'] = 'Dimension:';
далее файл:
catalog/controller/product/product.php
найти
$this->data['text_tags'] = $this->language->get('text_tags');
добавить после
$this->data['text_dimension'] = $this->language->get('text_dimension');
найти
$this->data['points'] = $product_info['points'];
добавить после
$this->data['weight'] = $this->weight->format($product_info['weight'], $product_info['weight_class_id']);
$this->data['length'] = $this->length->format($product_info['length'], $product_info['length_class_id']);
$this->data['width'] = $this->length->format($product_info['width'], $product_info['length_class_id']);
$this->data['height'] = $this->length->format($product_info['height'], $product_info['length_class_id']);
следующий файл:
catalog/view/theme/default/template/product/product.tpl
найти
добавить после
0) { ?>
0) { ?>