Hi,
Thanks for the report.
I have corrected it on my end. You can edit the view "product / cart".
And change:
?>
<a class="hikashop_small_cart_checkout_link" href="<?php echo hikashop_completeLink('checkout'.$url_itemid); ?>">
<span class="hikashop_small_cart_total_title"><?php echo $text; ?></span>
</a><?php
if($this->params->get('show_cart_delete',1)){
$delete = hikashop_completeLink('product&task=cleancart');
if(strpos($delete,'?')){
$delete.='&';
}else{
$delete.='?';
} ?>
<a class="hikashop_small_cart_clean_link" href="<?php echo $delete.'return_url='. urlencode(base64_encode(hikashop_currentURL('url',false))); ?>" >
<img src="<?php echo HIKASHOP_IMAGES . 'delete2.png';?>" border="0" alt="clean cart" />
</a><?php
}
To:
if($cart_type != 'wishlist'){
?>
<a class="hikashop_small_cart_checkout_link" href="<?php echo hikashop_completeLink('checkout'.$url_itemid); ?>">
<span class="hikashop_small_cart_total_title"><?php echo $text; ?></span>
</a><?php
if($this->params->get('show_cart_delete',1)){
$delete = hikashop_completeLink('product&task=cleancart');
if(strpos($delete,'?')){
$delete.='&';
}else{
$delete.='?';
} ?>
<a class="hikashop_small_cart_clean_link" href="<?php echo $delete.'return_url='. urlencode(base64_encode(hikashop_currentURL('url',false))); ?>" >
<img src="<?php echo HIKASHOP_IMAGES . 'delete2.png';?>" border="0" alt="clean cart" />
</a><?php
}
if($this->params->get('show_cart_proceed',1) && $this->params->get('cart_type','cart') != 'wishlist' && $this->params->get('from','display') == 'module'){
echo $this->cart->displayButton(JText::_('PROCEED_TO_CHECKOUT'),'checkout',$this->params,hikashop_completeLink('checkout'.$url_itemid),'window.location=\''.hikashop_completeLink('checkout'.$url_itemid).'\';return false;');
}
}else{
foreach($this->rows as $row){
$cart_id = $row->cart_id;
}
?>
<a class="hikashop_small_cart_checkout_link" href="<?php echo hikashop_completeLink('cart&task=showcart&cart_id='.$cart_id.'&cart_type='.$cart_type.$url_itemid); ?>">
<span class="hikashop_small_cart_total_title"><?php echo $text; ?></span>
</a>
<?php
}