Browser tab text?

Results 1 to 6 of 6
23 Mar 2011, 00:21
#1
ekon79 avatar

ekon79

New Zenner

Join Date:
Jan 2011
Posts:
29
Plugin Contributions:
0

Browser tab text?

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
23 Mar 2011, 00:29
#2
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Posts:
7,017
Plugin Contributions:
12

Re: Browser tab text?

ekon79:

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


Whenever you create/edit a category you can change what displays in the browser tab by clicking on "circle with the two black triangles"
This will allow you to add meta tags for your category(ies)

You can do the same thing for your products.
23 Mar 2011, 03:30
#3
ekon79 avatar

ekon79

New Zenner

Join Date:
Jan 2011
Posts:
29
Plugin Contributions:
0

Re: Browser tab text?

Thanks that really worked!
23 Mar 2011, 03:51
#4
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Posts:
7,017
Plugin Contributions:
12

Re: Browser tab text?

ekon79:

Thanks that really worked!


Glad to help
07 Apr 2015, 10:17
#5
timb22 avatar

timb22

New Zenner

Join Date:
Apr 2015
Posts:
31
Plugin Contributions:
0

Re: Browser tab text?

ekon79:

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

// 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 :-)

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

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

// Custom Keywords
define('CUSTOM_KEYWORDS', '*****, *****, *****, *****');


Hope this was helpful to someone.
16 Apr 2015, 13:49
#6
parafanaylya avatar

parafanaylya

Totally Zenned

Join Date:
Jul 2005
Posts:
470
Plugin Contributions:
1

Re: Browser tab text?

If you have a template, change here:

your_store/includes/languages/english/your_template/meta_tags.php

// page title
define('TITLE', 'insert your bit here');

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