Zen Cart Logo
Forums / General Questions / meta tag title

meta tag title

Locked

Views: 1,392

Results 1 to 9 of 9
This thread is locked. New replies are disabled.
14 Dec 2006, 3:31 PM
#1
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

meta tag title

please go to www.wonderfultoyz.com and tell me how do i get rid of this meta_tag_title in the title bar?

*****MODERATOR NOTE: LINK POINTS TO ADULT CONTENT *

14 Dec 2006, 3:51 PM
#3
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: meta tag title

kim this is not helping me i know where the file to edit is i just dont know what i did wrong....<head>

<title>META_TAG_TITLE</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta name="keywords" content="META_TAG_KEYWORDS" /> <meta name="description" content="META_TAG_DESCRIPTION" />

where is this getting pulled from its not in includes/languages/english/metatags.php its somewhere else

14 Dec 2006, 4:10 PM
#4
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: meta tag title

i guess i need to know where do i modify this....<meta name="keywords" content="META_TAG_KEYWORDS" />
<meta name="description" content="META_TAG_DESCRIPTION" />

i want to put my keywords in and description

14 Dec 2006, 5:22 PM
#5
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: meta tag title

Your /includes/templates/YOURTEMPLATE/common/html_header.php file appears to be missing the call to the meta_tags module

require(DIR_WS_MODULES . zen_get_module_directory('meta_tags.php'));

You can see its normal placement in the template_default version of this file.

15 Dec 2006, 2:54 AM
#6
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: meta tag title

this

require(DIR_WS_MODULES . zen_get_module_directory('meta_tags.php'));

was in that folder you suggested

15 Dec 2006, 3:16 AM
#7
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: meta tag title

i forgot to mention i tried adding this with no success define('MY_IMPORTANT_HOME_PAGE_DESCRIPTION',

15 Dec 2006, 3:55 AM
#8
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: meta tag title

You have somehow customized any of the following files, and thus have broken the normal operation of the meta-tags module, thereby ending up with the META_TAG_KEYWORDS and META_TAG_DESCRIPTION constants displayed instead.

/includes/modules/YOURTEMPLATE/meta_tags.php
/includes/modules/meta_tags.php
/includes/templates/YOURTEMPLATE/common/html_header.php
/includes/templates/template_default/common/html_header.php

Undoing your customizations, and/or deleting the override versions of these files, and/or re-installing the original editions of these files will be an ideal starting point.

15 Dec 2006, 3:58 AM
#9
hondauser85 avatar

hondauser85

Zen Follower

Join Date:
Apr 2005
Posts:
95
Plugin Contributions:
0

Re: meta tag title

Thanks it was the very first thing