Hi there,
It looks like a bug on our side.
Could you please edit the file cart.php in components/com_hikashop/views/product/tmpl/ and change this line:
if($this->params->get('cart_type','cart') != 'wishlist' && $this->params->get('from','display') == 'module'){
$cart_type = '&cart_type='.$this->params->get('cart_type','cart');
if($this->params->get('show_cart_proceed',1)) echo $this->cart->displayButton(JText::_('PROCEED_TO_CHECKOUT'),'checkout',$this->params,hikashop_completeLink('checkout'.$url_itemid.$cart_type),'');
with this one:
if($this->params->get('cart_type','cart') != 'wishlist' && $this->params->get('from','display') == 'module'){
if($this->params->get('show_cart_proceed',1)) echo $this->cart->displayButton(JText::_('PROCEED_TO_CHECKOUT'),'checkout',$this->params,hikashop_completeLink('checkout'.$url_itemid),'');