Hi,
The tooltip display is handled automatically by joomla/your template. So it's not an issue of HikaShop.
All I can recommend is to remove the sorting capability of the title and joomla won't add the tooltip.
You can do that in the file "listing" of the view "order" of your frontend template via the menu Display>Views by changing the line:
<?php echo JHTML::_('grid.sort', JText::_('DATE'), 'a.order_created', $this->pageInfo->filter->order->dir,$this->pageInfo->filter->order->value ); ?>
to:
<?php echo JText::_('DATE'); ?>