2
Hi again comstock!
Let us use your previous example from the other post:
include("mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");
$meta_keywords = "test, page, meta";
$meta_description = "test page meta";
$pagetitle = "page title";
if(isset($xoTheme) && is_object($xoTheme)) {
$xoTheme->addMeta( 'meta', 'keywords', $meta_keywords);
$xoTheme->addMeta( 'meta', 'description', $meta_description);
} else { // Compatibility for old XOOPS versions
$xoopsTpl->assign('xoops_meta_keywords', $meta_keywords);
$xoopsTpl->assign('xoops_meta_description', $meta_description);
}
$xoopsTpl->assign('xoops_pagetitle', $pagetitle);
$xoopsTpl->assign( 'xoops_showlblock', 0); //hide left blocks, set to 1 or remove this line to display them
$xoopsTpl->assign( 'xoops_showrblock', 0); //hide right blocks
$xoopsTpl->assign( 'xoops_showcblock', 0); //hide center blocks
?>
HERE IS MY HTML CONTENT
include(XOOPS_ROOT_PATH."/footer.php");
?>