Hi,
That's correct, the cart module's link will go to the checkout not the cart details page.
You have two solutions to change that:
- You can modify your checkout workflow to have only the cart view on the first step of your checkout in the HikaShop configuration. In that case, the first page of the checkout will only have the cart, and will be similar to the cart details page.
- You can edit the file product / cart.php via the menu Display>Views and change the URL of that link to your cart details page. You can just add such line at the beginning:
<?php $this->url_checkout = hikashop_completeLink('cart&task=showcart&cart_id='.$this->element->cart_id.'&cart_type='.$this->element->cart_type . $this->cart_itemid); ?>