|
|||
|
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. |
|
|||
|
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 } } } } |
![]() |
| Lesezeichen |
| Stichworte |
| herstellername, seitentitel |
| Themen-Optionen | |
| Ansicht | |
|
|
Ähnliche Themen
|
||||
| Thema | Autor | Forum | Antworten | Letzter Beitrag |
| Seitentitel | zwergnase | Installation und Konfiguration | 1 | 21.05.2007 10:52 |
| Seitentitel ändern | wdc | Shopbereich | 2 | 25.10.2006 12:36 |