Jump to content
xt:Commerce Community Forum

Herstellername im Seitentitel


Kicksen

Recommended Posts

  • 1 month later...

im includes/modules/metatags.php

Finde das hier:

<meta name="description" content="<?php echo META_DESCRIPTION; ?>" />

<meta name="keywords" content="<?php echo META_KEYWORDS; ?>" />

<title><?php echo TITLE.' - '.$contents_meta['content_heading']; ?></title>

<?php

} else {

?>

<meta name="description" content="<?php echo META_DESCRIPTION; ?>" />

<meta name="keywords" content="<?php echo META_KEYWORDS; ?>" />

<title><?php echo TITLE; ?></title>

<?php

}

}

}

und mit folgendes ersetzen:

<meta name="description" content="<?php echo META_DESCRIPTION; ?>" />

<meta name="keywords" content="<?php echo META_KEYWORDS; ?>" />

<title><?php echo TITLE.' - '.$contents_meta['content_heading']; ?></title>

<?php

} else {

if ($_GET['manufacturers_id']) {

$manufacturers_meta_query = xtDBquery("SELECT manufacturers_name

FROM " . TABLE_MANUFACTURERS . "

WHERE manufacturers_id='" . $_GET['manufacturers_id'] . "'");

$manufacturers_meta = xtc_db_fetch_array($manufacturers_meta_query, true);

?>

<meta name="description" content="<?php echo META_DESCRIPTION; ?>" />

<meta name="keywords" content="<?php echo META_KEYWORDS; ?>" />

<title><?php echo TITLE.' - '.$manufacturers_meta['manufacturers_name']; ?></title>

<?php

} else {

?>

<meta name="description" content="<?php echo META_DESCRIPTION; ?>" />

<meta name="keywords" content="<?php echo META_KEYWORDS; ?>" />

<title><?php echo TITLE; ?></title>

<?php

}

}

}

}

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...