Hi,
Thanks. I think I know what the problem is.
Try changing the line:
if(!empty($this->workflow['steps'][$this->workflow_step+1]['content']) && $this->workflow['steps'][$this->workflow_step+1]['content'][0]['task'] != 'end' && $block_task != 'cart') {
to:
if(!empty($this->workflow['steps'][$this->workflow_step+1]['content']) && $this->workflow['steps'][$this->workflow_step+1]['content'][0]['task'] != 'end' && !in_array($block_task, array('cart', 'address'))) {
in the file components/com_hikashop/views/checkout/view.html.php via FTP.
It should hopefully help.
If not please provide a FTP access.
If yes, let us know so that we can include the change on our end.