Hi Xavier,
I have added the following code in the file "components/com_hikashop/views/checkout/view.html.php" in the "notice()" function:
JRequest::setVar('cart_type',JRequest::getVar('cart_type',''));
But this lines:
$cart_type = $app->getUserState( HIKASHOP_COMPONENT.'.popup_cart_type','cart');
are not in the code of the view "checkout / cart", So I can't replace with that lines:
$cart_type = JRequest::getVar('cart_type','');
if(empty($cart_type))
$cart_type = $app->getUserState( HIKASHOP_COMPONENT.'.popup_cart_type','cart');
Can you show me what is the line at which I have to add the code?