iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Search Engine Optimization Forum SEO is much easier with help from peers and experts! The WebProWorld SEO forum is for the discussion and exploration of various search engine optimization topics. Any non (engine) specific SEO or SEM topics should go here.

Share Thread: & Tags

Share Thread:

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-20-2008, 01:57 PM
WebProWorld New Member
 
Join Date: Nov 2008
Posts: 4
cinelson RepRank 0
Default Meta Tags

I have a website that I've tried to optimize myself, my problem is that I have duplicate title and keyword tags on every page, because I don't know how to make them unique for each page, I just added the tags on the header which makes them appear on everypage. I'm afraid I'll get penalized for having so many duplicate tags, or that the website will never be as competitive due to this issue. Does anyone know what I need to do?
Website is Gia's Wedding Store Home Page, Wedding Accessories, Wedding Party Favors, Wedding Gifts
Reply With Quote
  #2 (permalink)  
Old 11-20-2008, 02:16 PM
crankydave's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Aug 2004
Location: Playing with fire!
Posts: 4,120
crankydave RepRank 6crankydave RepRank 6crankydave RepRank 6crankydave RepRank 6crankydave RepRank 6crankydave RepRank 6crankydave RepRank 6
Default Re: Meta Tags

First, contact your tech support. If you cannot add unique meta information, then don't use the tags at all. SE's will use text from your page instead. Also make sure you're using unique page titles.

Short of that, you would need to change platforms.

Dave
Reply With Quote
  #3 (permalink)  
Old 11-20-2008, 04:43 PM
WebProWorld Pro
 
Join Date: Feb 2004
Location: Stupid question. At my PC.
Posts: 117
TechEvangelist RepRank 0
Default Re: Meta Tags

You also need to learn how to properly use the HTML title tag.

"Gia's Wedding Store Home Page" is not the best way to start an HTML title tag.

I agree with crankydave. If you cannot set up unique meta tags, then do not use them. If you cannot set up unique HTML title tags for each page, then either get it fixed or find an e-commerce solutions that does allow it.
__________________
Facts are meaningless. They can be used to prove anything. - Homer Simpson
MySQL Cheatsheet :: Arizona SEO training
Reply With Quote
  #4 (permalink)  
Old 11-21-2008, 08:20 AM
chandrika's Avatar
WebProWorld Veteran
 
Join Date: Oct 2005
Location: Cambridge, UK
Posts: 527
chandrika RepRank 2
Default Re: Meta Tags

Are you using php to include the headers on the html page, as the way I get round this, is to either make the meta tags variables in the php to pulled from relevant place in database, or use two header includes, one before and one after the variable metatags, so that you edit the actual meta tags within each unique page

It is definitely better to have uniques keywords and descriptions for each page in description.
__________________
2009 Hairstyles - Pictures of 2009 hairstyles and a virtual hairstyler demo.
Price Comparison Site - Compare prices of well known brands and products.
Reply With Quote
  #5 (permalink)  
Old 11-21-2008, 09:33 AM
WebProWorld New Member
 
Join Date: Nov 2008
Posts: 4
cinelson RepRank 0
Default Re: Meta Tags

Unfortunately I don't know what php is, I actually don't know much about html, I've learned a lot but I don't know coding so it's difficult, for now I am deleting the tags so that they don't appear duplicate.

Thanks
Reply With Quote
  #6 (permalink)  
Old 11-21-2008, 09:43 AM
WebProWorld Veteran
 
Join Date: Jun 2004
Location: Indiana
Posts: 589
google junky RepRank 1
Default Re: Meta Tags ProStores

Check this information out and see if it helps
ProStores Tip: Meta Tags ProStores Tips and Tutorials - One Take Media

There was also a link in the article that showed and example

Good luck,
Google Junky
Reply With Quote
  #7 (permalink)  
Old 11-21-2008, 09:59 AM
WebProWorld New Member
 
Join Date: Nov 2008
Posts: 4
zegron RepRank 0
Default Re: Meta Tags

Hi cinelson,

Thats my blog that was linked here, I hope you find it useful. I though I'd elaborate a little here.

A ProStore site CAN be configured with unique meta description and keyword tags. (i tend not to use the meta keyword tag as its almost totally useless for seo and completely useless for increasing your ranking.)

The code applies a logic statement that says, "If the page already has a meta description/keyword/s specified for it show them otherwise show this text." the directive code is for pages that don't have meta tags text for them and you want to use something other than the default text you specified.

You can get even more complex if you want if you know how to program in SSML. I've got Sporting Goods and School Spirit Apparel | ForSports to insert the category description text as the meta description as well for categories and subcategories. But on item pages it uses the ProStores default. But again you can configure that too if you want. There are a lot of different ways to configure it if you know how. :-)

The code I posted in my blog is as follows:

Quote:
On the header template, replace default code that looks something like this:



<ss:if test="$page.hasMetaKeywords()">

<META NAME="keywords" CONTENT="$page.meta.keywords">

</ss:if>




And replace it with something like this:



<ss:choose>

<ss:when test="$page.hasMetaKeywords()">

<META NAME="keywords" CONTENT="$page.meta.keywords">

</ss:when>

<ss:otherwise>

<meta name="keywords" content="default keywords here used whenever keywords are not defined for a template">

</ss:otherwise>

</ss:choose>




And then add tags that look like this to each of the templates where you want custom Meta keywords:



<ss:directive name="page.meta.keywords" value="this page specific custom meta keywords for page x"/>



You do not need add this to the Product Detail template. It already includes code that allows you to manipulate product Meta keywords and descriptions through the Product Information page in store administration.



You can apply the same logic to the Meta description content. Replace the default code that looks like this:



<ss:if test="$page.hasMetaDescription()">

<META NAME="description" CONTENT="$page.meta.description">

</ss:if>




With code that looks like this:



<ss:choose>

<ss:when test="$page.hasMetaDescription()">

<META NAME="description" CONTENT="$page.meta.description">

</ss:when>

<ss:otherwise>

<meta name="description" content="default description here used whenever it is not defined for a template">

</ss:otherwise>

</ss:choose>




And then add tags that look like this to each body template you want to have a customized Meta description:



<ss:directive name="page.meta.description" value="this page specific custom meta description for page x"/>
Reply With Quote
  #8 (permalink)  
Old 11-21-2008, 03:59 PM
WebProWorld New Member
 
Join Date: Nov 2008
Location: England
Posts: 14
furnitureboy RepRank 0
Default Re: Meta Tags

Does each web page need to have different meta tags or should they alljust have your key search terms in?

Would love some advice on this matter.
Reply With Quote
  #9 (permalink)  
Old 11-21-2008, 04:03 PM
WebProWorld New Member
 
Join Date: Nov 2008
Posts: 4
zegron RepRank 0
Default Re: Meta Tags

Are you referring to a ProStores site? or just in general? This thread seems to be for this particular person's site which runs on the ProStores E-commerce software.

In ProStores each product has a section in the admin page where you can enter in specific keywords and automatically ProStores pulls the first 200 characters of your product description and places them into the meta description for that page. Its all done dynamically.
Reply With Quote
  #10 (permalink)  
Old 11-21-2008, 04:15 PM
WebProWorld New Member
 
Join Date: Nov 2008
Posts: 4
cinelson RepRank 0
Default Re: Meta Tags

Hi Zegron,
I tried doing the first part of what you suggest and it keeps giving me an invalid code, I replaced <ss:if test="$page.hasMetaKeywords()">

<META NAME="keywords" CONTENT="$page.meta.keywords">

</ss:if>

with the one you provided and it completely distorted the site.
Reply With Quote
  #11 (permalink)  
Old 11-21-2008, 04:22 PM
WebProWorld New Member
 
Join Date: Nov 2008
Posts: 4
zegron RepRank 0
Default Re: Meta Tags

Can you copy and paste the error message it gave you here, then revert to your Baseline, you did save one before you made changes right?

If not just go ahead and delete the code. Once I look at the error message I can tell you whats wrong. I have the code live in 6 sites right now.
Reply With Quote
  #12 (permalink)  
Old 11-22-2008, 08:17 AM
WebProWorld New Member
 
Join Date: Nov 2008
Posts: 9
jen.bas RepRank 0
Thumbs up Re: Meta Tags

Hi,

Here's some checklist about meta tags..

- The header sections of each page should be different.

- Each header section contains instances of the main keyword for the site, and the main keyword for the page

- Page Title is different on each page

- Main Keyword field is different on each page

- Meta Description is short and concise; it includes main keyword at least twice and other objective keywords at least once

- Meta Keywords are different on each page

Reply With Quote
  #13 (permalink)  
Old 11-22-2008, 05:04 PM
WebProWorld New Member
 
Join Date: Sep 2008
Posts: 5
admonharr RepRank 0
Default Re: Meta Tags

Crankydave said the best. The search engines pick up text "relevant" text from the page itself but do make the titles unique. Which means your content should be properly optimized.
Reply With Quote
  #14 (permalink)  
Old 11-25-2008, 02:23 PM
WebProWorld New Member
 
Join Date: Nov 2008
Posts: 4
cinelson RepRank 0
Default Re: Meta Tags

Hi Zegron,

I was actually doing it wrong, I did go ahead and tried on a different site and it work, will be doing it on my site now.

Thanks
Reply With Quote
  #15 (permalink)  
Old 11-25-2008, 03:23 PM
WebProWorld New Member
 
Join Date: Nov 2008
Posts: 4
zegron RepRank 0
Default Re: Meta Tags

Great! I'm glad it worked for you!

Last edited by zegron; 11-25-2008 at 03:39 PM.
Reply With Quote
Reply

  WebProWorld > Search Engines > Search Engine Optimization Forum

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How many meta tags do you need for SEO dtalbot Search Engine Optimization Forum 23 03-12-2008 07:11 AM
title and meta tags outside of header tags supernatural_247 Search Engine Optimization Forum 8 02-25-2007 05:54 PM
DC meta tags why repeated meta tags Steven1976a Search Engine Optimization Forum 1 03-19-2006 02:05 PM
Meta tags what are DC.tags? Steven1976a Search Engine Optimization Forum 4 07-29-2005 01:52 AM
Meta Tags / Alt Tags/robots is confusing CaronWorldWide Search Engine Optimization Forum 2 08-11-2004 01:20 PM


All times are GMT -4. The time now is 01:40 AM.



Search Engine Optimization by vBSEO 3.3.0