Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / help needed with site title

help needed with site title

Views: 618

Results 1 to 6 of 6
28 Mar 2011, 8:41 AM
#1
catapolt avatar

catapolt

New Zenner

Join Date:
Mar 2011
Posts:
18
Plugin Contributions:
0

help needed with site title

Hi im trying to change my site title from (Stage & Studio Dance Wear! For All Your Dance Wear Needs)
now in meta tags i have it set to say this

// page title
define('TITLE', 'Stage & Studio Dance Wear');

// Site Tagline
define('SITE_TAGLINE', 'For All Your Dance Wear Needs!');

but it is coming up with ! in site title when its not set there but i do want ! at the end of site tagline any idea how this can be done or what im doing wrong?

url of site is http://stageandstudiodancewear.com.au/

28 Mar 2011, 10:30 PM
#2
celtic avatar

celtic

Zen Follower

Join Date:
Feb 2010
Posts:
154
Plugin Contributions:
0

Re: help needed with site title

Catapolt,

Is it possible you may have a value in this... (in meta_tags.php)...

// NOTE: If HOME_PAGE_TITLE is left blank (default) then TITLE and SITE_TAGLINE will be used instead.
define('HOME_PAGE_TITLE', ''); // usually best left blank

29 Mar 2011, 9:49 AM
#3
catapolt avatar

catapolt

New Zenner

Join Date:
Mar 2011
Posts:
18
Plugin Contributions:
0

Re: help needed with site title

i have not adjusted them

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

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

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

// Home Page Only:
define('HOME_PAGE_META_DESCRIPTION', '');
define('HOME_PAGE_META_KEYWORDS', '');

// NOTE: If HOME_PAGE_TITLE is left blank (default) then TITLE and SITE_TAGLINE will be used instead.
define('HOME_PAGE_TITLE', ''); // usually best left blank

29 Mar 2011, 10:31 PM
#4
celtic avatar

celtic

Zen Follower

Join Date:
Feb 2010
Posts:
154
Plugin Contributions:
0

Re: help needed with site title

There's likely to be another copy of meta_tags.php (or your english.php file) somewhere on your server that is overriding the one you think you are using. Do a 'search in files' for "Wear!" and see what it finds.

Failing that, use the Developers Toolkit in zencart and search for: define('TITLE'

That brings up about 5 instances for me, showing what is defined in each place. Hopefully that will indicate where the rogue text is hidden.

29 Mar 2011, 10:44 PM
#5
donal avatar

donal

Zen Follower

Join Date:
Jan 2009
Location:
Ireland
Posts:
442
Plugin Contributions:
0

Re: help needed with site title

catapolt:

Hi im trying to change my site title from (Stage & Studio Dance Wear! For All Your Dance Wear Needs)
now in meta tags i have it set to say this

// page title
define('TITLE', 'Stage & Studio Dance Wear');

// Site Tagline
define('SITE_TAGLINE', 'For All Your Dance Wear Needs!');

but it is coming up with ! in site title when its not set there but i do want ! at the end of site tagline any idea how this can be done or what im doing wrong?

url of site is http://stageandstudiodancewear.com.au/

Surley this is because ....../ NOTE: If HOME_PAGE_TITLE is left blank (default) then TITLE and SITE_TAGLINE will be used instead.
define('HOME_PAGE_TITLE', ''); // usually best left blank

the AND being the issue?

30 Mar 2011, 1:51 AM
#6
catapolt avatar

catapolt

New Zenner

Join Date:
Mar 2011
Posts:
18
Plugin Contributions:
0

Re: help needed with site title

thanks i have now fixed the problem i seemed to of been changing the wrong meta_tags.php i was changing this one /includes/languages/english/meta_tags.php
but it is /includes/languages/english/template name/meta_tags.php

silly old me
thanks for helping out