It seems like, from the modules/meta_tags.php file that there is supposed to be custom metatags using the manufacturers name, yet its just using the basic metatags for the site. If you go to any person's zen cart that is using the manufacturers sidebox you'll see what I mean.
This is the section of code that leads me to believe that zen cart is supposed to do this (around line 97):
I'd like the manufacturers pages to have the manufacturers name in the title. Anyone know how I can make this happen?Code:} elseif ($category_depth == 'products') { if (isset($_GET['manufacturers_id'])) { $sql = "select manufacturers_name from " . TABLE_MANUFACTURERS . " where manufacturers_id = '" . (int)$_GET['manufacturers_id'] . "'"; $manufacturer_metatags = $db->Execute($sql); if ($manufacturer_metatags->EOF) { $meta_tags_over_ride = true; } else { define('META_TAG_TITLE', $manufacturer_metatags->fields['manufacturers_name'] . PRIMARY_SECTION . TITLE . TAGLINE); define('META_TAG_DESCRIPTION', TITLE . PRIMARY_SECTION . $manufacturer_metatags->fields['manufacturers_name'] . SECONDARY_SECTION . KEYWORDS); define('META_TAG_KEYWORDS', KEYWORDS . ' ' . $manufacturer_metatags->fields['manufacturers_name']); } // EOF
Thanks!






Bookmarks