Hi,
In this file "/home/devcom/www/components/com_hikashop/views/cart/view.html.php" thanks to check if the code at the top of the function "showcarts()" is:
$app = JFactory::getApplication();
$menus = $app->getMenu();
$menu = $menus->getActive();
if(empty($menu)){
if(!empty($Itemid)){
$menus->setActive($Itemid);
$menu = $menus->getItem($Itemid);
}
}
if(empty($cart_type)){
if (is_object( $menu->params )) {
$cart_type = $menu->params->get('cart_type');
}
if(!empty($cart_type)){
JRequest::setVar('cart_type',$cart_type);
}else{
$cart_type = JRequest::getString('cart_type','cart');
}
}
$this->assignRef('cart_type', $cart_type);
And can you give us the line where the error is ?