Hi,
I have reproduced the issue on my end and correct it. Thanks for the report.
To make it working, thanks to edit the file "components/com_hikashop/controllers/cart.php" and replace the function "delete()" by:
function delete(){ //delete a cart with the id given
$cart_id = JRequest::getInt('cart_id','0');
$cart_type = JRequest::getString('cart_type','cart');
$cartClass = hikashop_get('class.cart');
$cartClass->cart_type = $cart_type;
$cartInfo = $cartClass->loadCart($cart_id);
$currUser = hikashop_loadUser(true);
if($cartInfo != null && $currUser->user_cms_id == $cartInfo->user_id){
$app = JFactory::getApplication();
if($app->getUserState(HIKASHOP_COMPONENT.'.'.$cart_type.'_id') == $cart_id){
$app->setUserState(HIKASHOP_COMPONENT.'.'.$cart_type.'_id', '0');
}
$cartClass->delete($cart_id, 'old');
}
$this->showcarts();
}