So, two files you have to workaround: /templates/default/pages_default.tpl exchange: <h1>$aData[sName]</h1> to: <!-- IF:START PAGE_NAME --><h1>$aData[sName]</h1><!-- IF:END PAGE_NAME --> and in: actions/pages.php under: $oTpl->setIf( 'NAVIPATH' ); add: if($aData['iPage']!=1 && $aData['iPage']!=X && $aData['iPage']!=Y) $oTpl->setIf('PAGE_NAME');
where X,Y are the pages IDs, you want to hide their title.