Hi,
What do you mean by "above the shopping cart" ? The price and add to cart part of the product page ?
If it is, you have to edit the view "product / show_tabular", remove the code:
<li id="hikashop_show_tabular_specification_li" class="hikashop_tabs_li ui-corner-top"><?php echo JText::_('SPECIFICATIONS');?></li>
And move the code:
<div class="hikashop_tabs_content" id="hikashop_show_tabular_specification">
<?php
//LAYOUT show_block_dimensions
$this->setLayout('show_block_dimensions');
echo $this->loadTemplate();
if(!empty($this->fields)){
//LAYOUT show_block_custom_main
$this->setLayout('show_block_custom_main');
echo $this->loadTemplate();
}
?>
</div>
After:
<?php
if(!empty($this->element->extraData->rightBegin))
echo implode("\r\n",$this->element->extraData->rightBegin);
?>