Hi,
You're using the new checkout system of HikaShop 3.x while this thread was about the old checkout of HikaShop 2.x.
So the modification will be completely different in your case.
You'll want to take the code:
<?php
$continue_shopping = $this->config->get('continue_shopping','');
if(!empty($continue_shopping)) {
if(strpos($continue_shopping, 'Itemid') === false) {
if(strpos($continue_shopping, 'index.php?') !== false) {
$continue_shopping .= $url_itemid;
}
}
if(!preg_match('#^https?://#',$continue_shopping))
$continue_shopping = JURI::base().ltrim($continue_shopping,'/');
?>
<a href="<?php echo $continue_shopping; ?>" class="<?php echo $this->config->get('css_button','hikabtn'); ?> hikabtn_checkout_continue" id="hikashop_checkout_shopping_button"><?php echo JText::_('CONTINUE_SHOPPING'); ?></a>
<?php
}
?>
from the file "show_block_buttons" and put it near the end of the file "show_block_cart" via the menu Display>Views.