Hi,
You can remove the code:
if($this->params->get('characteristic_display') == 'list') {
$this->setLayout('show_block_characteristic');
echo $this->loadTemplate();
}
from the "show" file and move it to the "show_default" file of the view "product" before the code:
if($this->params->get('characteristic_display') != 'list') {
$this->setLayout('show_block_characteristic');
echo $this->loadTemplate();
?>
<br />
<?php
}
You also need to remove the line:
<form action="<?php echo hikashop_completeLink('product&task=updatecart'); ?>" method="post" name="hikashop_product_form" enctype="multipart/form-data">
and the line:
</form>
from the "show" view file.