Here is the solution to the problem,
Hi all
I made a few ajustments to cart.php to make it work in Hikashop 3.2.0
Line 11 add this:
CODE: SELECT ALL
global $Itemid;
$css_button = $this->config->get('css_button', 'hikabtn');
$css_button_checkout = $this->config->get('css_button_checkout', '');
$module_id = (int)$this->params->get('id', 0);
Around line 120 replace form tag with:
CODE: SELECT ALL
<form action="<?php echo hikashop_completeLink('product&task=updatecart'.$this->url_itemid, false, true); ?>" method="post" name="hikashop_<?php echo $this->element->cart_type; ?>_form" onsubmit="if(window.hikashop) return window.hikashop.submitCartModule(this, 'hikashop_cart_<?php echo $module_id; ?>', '<?php echo $this->element->cart_type; ?>');">
Around line 327 replace with this:
CODE: SELECT ALL
<?php
if ($this->params->get('cart_type', 'cart') != 'wishlist' && $this->params->get('from', 'display') == 'module') :
if($this->params->get('show_cart_proceed',1)) {
?>
<a class="<?php echo $css_button . ' ' . $css_button_checkout; ?>" href="<?php echo $this->url_checkout; ?>" onclick="if(this.disable) return false; this.disable = true;"><span><?php
echo JText::_('PROCEED_TO_CHECKOUT');
?></span></a>
<?php
}
endif; ?>
Regards,
Henrik
My regards to Henrik