Доброго дня, прочитал и облазил множество форумов, но к сожаление ничего путного не нашел для opencart 2x
Столкнулся с такой проблемой не как не соображу, как вывести размер товара на витрину в категории товаров, а также хитр продаж и новинки .
в сам товар как выводить я нашел решения )
<modification>
<name>none</name>
<version>0.1</version>
<link>none</link>
<author>none</author>
<code>addLxWxH</code>
<file path="catalog/view/theme/default/template/product/product.tpl">
<operation>
<search><![CDATA[
<li><?php echo $text_stock; ?> <?php echo $stock; ?></li>
]]>
</search>
<add position="after"><![CDATA[
<?php if ($length && $width && $height && $weight) { ?>
<li>Размер: <?php echo $length; ?> x <?php echo $width; ?> x <?php echo $height; ?></li>
<?php } ?>
]]>
</add>
</operation>
</file>
<file path="catalog/controller/product/product.php">
<operation>
<search><![CDATA[
$data['points'] = $product_info['points'];
]]>
</search>
<add position="after"><![CDATA[
$data['length'] = number_format($product_info['length'], 2);
$data['width'] = number_format($product_info['width'], 2);
$data['height'] = number_format($product_info['height'], 2);
$data['weight'] = number_format($product_info['weight'], 2);
]]>
</add>
</operation>
</file>
</modification>