Hi,
1/ Thanks for the report, we will update the HikaShop package as soon as possible with the fix.
For the moment you can edit the plugin and replace
$html = '<div id="hikashop_social style="'.$styles.'">' . implode('', $html) . '</div>';
By
$html = '<div id="hikashop_social" style="'.$styles.'">' . implode('', $html) . '</div>';
2/ With the actual plugin, it is not possible ; but I rewrite a big part of the plugin in order to give him more flexibility.
I hope that this flexibility will allow the social ordering in a future version. Before that, the best is to edit the plugin and change the ordering in the content generation config
$html = array(
$this->_addTwitterButton($plugin),
$this->_addPinterestButton($plugin),
$this->_addGoogleButton($plugin),
$this->_addAddThisButton($plugin),
$this->_addFacebookButton($plugin)
);
Regards,