Hi,
When you make some view override, the views is copied in a new file in order to be kept during updates.
So, when you created your override, you were using the version 1.6.0 of HikaShop.
The weight is displayed by the view "show_block_dimensions".
if ($this->config->get('weight_display', 0)) {
if(isset($this->element->product_weight) && bccomp($this->element->product_weight,0,3)){ ?>
<span id="hikashop_product_weight_main" class="hikashop_product_weight_main">
<?php echo JText::_('PRODUCT_WEIGHT').': '.rtrim(rtrim($this->element->product_weight,'0'),',.').' '.JText::_($this->element->product_weight_unit); ?><br />
</span>
<?php
}
}
Regards,