1
Hi everyone,
I am using the PageWrap module to display static HTML pages within my XOOPS site. Here is the code of the index.php file of this module:
include("../../mainfile.php");
include(XOOPS_ROOT_PATH."/header.php");
$xoopsOption['show_rblock'] = 1;
?>
My HTML page content goes here.
include(XOOPS_ROOT_PATH."/footer.php");
?>
This works for me quite well, and I end up with a custom page module that looks like this:
http://xoopsexperts.com/modules/about/I have renamed the module to be "about" in this case, and changed the xoops_version.php file to reflect this directory name change.
What I want to know is... how can I give this custom module it's own unique page title, meta keywords, and page meta description tag?
I don't want to add these tags onto the title, keywords or description tags that I use on the rest of the site...I just want this module to have it's own unique tags.
Any ideas on the easiest way to do this? I think I need to bypass the header.php file... or is there someway to "override" the main meta tags?
Thanks,
Jeff