Hi condorazul,
You can change the position of the HikaShop Social plugin.
Go in HikaShop > Display > Views, and edit the view product / show_default.php (or show_tabular / show_reversed)
Move:
<?php
$pluginsClass = hikashop_get('class.plugins');
$plugin = $pluginsClass->getByName('content', 'hikashopsocial');
if (@ $plugin->published || @ $plugin->enabled) {
echo '{hikashop_social}';
}
?>
Under:
<div id="hikashop_product_left_part" class="hikashop_product_left_part">
<?php
$this->row = & $this->element;
$this->setLayout('show_block_img');
echo $this->loadTemplate();
?>
</div>