In menu1 I want to show the summary of the products added to basket just below the line "Products in basket: x" Example: Products in basket: 4 Total: 560 EUR
I don't know if this solution is correct from a programmers point of view but it seems to work. In core/pages.php find this: $content .= '"> <a href="'.$aData['sLinkName'].'">'.$aData['sName'].'</a>'.( !empty( $GLOBALS['config']['basket_page'] ) && $aData['iPage'] == $GLOBALS['config']['basket_page'] ? '<span>'.$GLOBALS['lang']['Basket_products'].': <strong>'.$GLOBALS['iOrderProducts'].'</strong></span>' : null ).$aData['sSubContent'].'</li>';
Yes I used that solution for v5. I tried it for v6 but there is no menus.tpl and there is no variable #$fOrderSummary in index.php. At least I couldn't find it. I'm sure there might be a smarter solution than mine.
interkob - it's exactly there I have made my modifications. I have added this code into the line: <br />'.$GLOBALS['lang']['Summary'].' '.$GLOBALS['config']['currency_symbol'].': <strong>'.displayPrice( $_SESSION['fOrderSummary'.LANGUAGE]).
And it still works. I thought maybe we could find a smarter solution. But maybe it's smart enough...