Zen Cart Logo
Forums / General Questions / Trying to Locate into which page these keywords are embedded

Trying to Locate into which page these keywords are embedded

Locked

Views: 1,252

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
6 Jul 2006, 10:27 AM
#1
meltdown avatar

meltdown

Totally Zenned

Join Date:
Jun 2006
Location:
My family and I live in Brighton, England
Posts:
947
Plugin Contributions:
0

Trying to Locate into which page these keywords are embedded

While submitting my /shop to search engines I found that I had some messy meta-tag info that needed cleaning-up. However, for the life of me, I can't locate that specific page.
Here's part of what I'm seeing when the site is analyzed:

Source code

    1 <!DOCTYPE html PUBLIC "-//W3C//DTDXHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    2 <htmlxmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
    3 <head>
    4 <title>BeadedLily.com, Beads andJewelry for the NEW Renaissance!</title>
    5 <meta http-equiv="Content-Type"content="text/html; charset=iso-8859-1" />
    6 <meta name="keywords" content="HandCrafted Jewelry Handmade Glass Beads Gift Certificates Beading Supplies
Pendants wire mesh,florence, italy, glass, beads, jewelry, murano,venice, "
/>
    7 <meta name="description"content="BeadedLily.com :  - Hand Crafted Jewelry Handmade Glass Beads Gift
Certificates Beading Supplies Pendants wire mesh,florence, italy, glass, beads,
jewelry, murano,venice," />
    8 <meta http-equiv="imagetoolbar"content="no" />

I assumed it was an easy fix. (HA!)

To try and locate the page where these keywords are listed, I've looked in:

shop/includes/templates/template_custom_T/common/html_header.php

&

/shop/includes/languages/english/template_custom_T/meta_tags.php

&

/shop/includes/templates/template_custom_T/common/tpl_header.php

Each page has it's own keywords, but not the ones listed here. :frusty:

Can anyone tell me what I'm missing?

Here's the main page:
http://www.beadedlily.com/shop

Thanks in advance for any and all suggestions.

6 Jul 2006, 1:46 PM
#2
meltdown avatar

meltdown

Totally Zenned

Join Date:
Jun 2006
Location:
My family and I live in Brighton, England
Posts:
947
Plugin Contributions:
0

Re: Trying to Locate into which page these keywords are embedded

Got it! :thumbsup:
After a deep search in the forum I was able to unearth the answer. (Buried within another response)

I made my changes to the html_header.php in my template folder under: includes/template/mytemplate/common/html_header.php

As follows:

Code:
<meta name="keywords" content="<?php echo META_TAG_KEYWORDS; ?>" />

changed to:
<meta name="keywords" content="my, keyword, list, customized, put, what, you, want, here" />

and

Code:
<meta name="description" content="<?php echo META_TAG_DESCRIPTION; ?>" />

changed to:
<meta name="description" content="my sites description" />

I ran it through the analyzer at: http://www.scrubtheweb.com/cgi-bin/confirm.cgi to check it and all is good. all came out the way I wanted.

My site is: www.salonchoice.net/catalog/

You can view the entire thhread here:
http://www.zen-cart.com/forum/showthread.php?t=29850&page=2&highlight=META_TAG_DESCRIPTION

Thanks!! :laugh:

6 Jul 2006, 2:07 PM
#3
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Trying to Locate into which page these keywords are embedded

Note: meta tags are built in the file /includes/modules/meta_tags.php

This can be customized further to suit your needs on a per page basis ...