Quote Originally Posted by ekon79 View Post
In Zencart, when you click on a category name, the category name displays in the browser tab. I want to change what is being displayed to something else, which file is the one that updates the browser tab when a category is being clicked on?

Thanks
You can also edit your /includes/languages/english/meta_tags.php if you don't want to edit every meta tag individually on the admin side.

Find

Code:
// page title
define('TITLE', 'Zen Cart!');

// Site Tagline
define('SITE_TAGLINE', 'The Art of E-commerce');

// Custom Keywords
define('CUSTOM_KEYWORDS', 'ecommerce, open source, shop, online shopping');

Then edit it to you liking. Edit the stared out parts below with HTML if you are unsure how to edit it :-)

Code:
// page title
define('TITLE', '**********');

// Site Tagline
define('SITE_TAGLINE', '**********');

// Custom Keywords
define('CUSTOM_KEYWORDS', '*****, *****, *****, *****');
Hope this was helpful to someone.