Kicksen Posted July 22, 2008 Report Share Posted July 22, 2008 Ist es möglich den Herstellernamen im Seitentitel anzeigen zu lassen? Dies soll dann passieren, wenn man über die Herstellerbox einen Hersteller auswählt und dann die Artikel des Herstellers erscheinen. Link to comment Share on other sites More sharing options...
stwinger Posted July 22, 2008 Report Share Posted July 22, 2008 wo soll der hin ? in den Seitentitel ? also in den Title Tag ? oder möchtest du das der Herstellername innerhalb der Seite also als Überschrift angezeigt wird ? Link to comment Share on other sites More sharing options...
motivorange Posted September 12, 2008 Report Share Posted September 12, 2008 Hat da jemand ne Idee??? Link to comment Share on other sites More sharing options...
Rovert Posted September 13, 2008 Report Share Posted September 13, 2008 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.