
Originally Posted by
stevesh
That's the right folder, but I'd guess you didn't do the edit right, as what you're seeing are the define names. That means Zencart can't find a value specified for that define name.
Here's what the 'title' define in meta_tags.php should look like after editing:
// page title
define('TITLE', 'From Key West!');
and if you want a define to be empty, you can't just remove the define statement - you remove the text between the single quotes:
// page title
define('TITLE', '');