Steps to show page title with module name
Here are the steps to show page title with module name -
To do this you have to first edit header.php of each of your themes by adding this line
$xtpl->assign(“CURRENT_MODULE_NAME”, $_REQUEST['module']);
you can add this line after these lines
$xtpl->assign(“THEME”, $theme);
$xtpl->assign(“IMAGE_PATH”, $image_path);
then you have to edit the header.html of each of your themes here you have to look for
{APP.LBL_BROWSER_TITLE}
and change it to “”
{CURRENT_MODULE_NAME} will add the modules name to the title bar.
