
Originally Posted by
www.scifi-models.com
Search for this line in your_template/common/html_header.php..
<meta name="keywords" content="<?php echo META_TAG_KEYWORDS; ?>" />
Should be near the top, line 27.
Delete the line and replace with the following:
<?php $slashpos = strrpos($_SERVER['REQUEST_URI'],"/");
if ($slashpos === false || $slashpos == strlen($_SERVER['REQUEST_URI'])) {
$thispage = $_SERVER['REQUEST_URI'];
}
else
{
$thispage = substr($_SERVER['REQUEST_URI'],$slashpos+1,strlen($_SERVER['REQUEST_URI'])-1);
}
if ($thispage == "index.php" || $thispage == "index.php?main_page=index" || $thispage == "") {
echo '<meta name="keywords" content="scifi models,star trek resin props,star trek models,movie memorabilia,t-virus prop,enterprise prop,maco,############## movie props,prop reproductions,resin props,battlestar resin prop"/>';
}
else
{
echo '<meta name="keywords" content="' . META_TAG_KEYWORDS . '" />' ;
} ?>