Hi,
Why not simply use the "default" product page layout ?
If you want to use the tabular layout, you would have to move the code below in the file "show_tabular" via the menu Display>Views:
<div class="hikashop_tabs_content" id="hikashop_show_tabular_specification">
<?php
$this->setLayout('show_block_dimensions');
echo $this->loadTemplate();
if(!empty($this->fields)){
$this->setLayout('show_block_custom_main');
echo $this->loadTemplate();
}
?>
</div>
and put it for example before the line:
<span id="hikashop_product_id_main" class="hikashop_product_id_main">
and remove the line:
<li id="hikashop_show_tabular_specification_li" class="hikashop_tabs_li ui-corner-top"><a onclick="displayTab('hikashop_show_tabular_specification');" href="javascript:void(0);"><?php echo JText::_('SPECIFICATIONS');?></a></li>