Dynamically Generated Site Index

A forum for, well, anything really.
Gripes, moans, ideas or just general chit chat. EXCEPT SPAM!!! - Don't just register to post here - IT WILL GET DELETED!!!
Post Reply
benchwarmer
Beginner
Beginner
Posts: 7
Joined: Tue Oct 12, 2004 9:36 pm

Dynamically Generated Site Index

Post by benchwarmer »

Since installing the java script we have dropped significantly in our Search Engine Ranking. We had underestimated the weight of this in our rankings and now need to create a dynamic site index for each catagory on our site. The <noscript> tag does not seem to be a feasible solution as we currently have 2300 pages and will be adding approximately 2300 more (parts pages - one page per part we carry).

In addition, the no script tag would create manual changes of all the above pages each time a change was made which is not cost effective. We would be interested in software and/or any other at least semi-automated system.

Thanks for your iput!
User avatar
John
 Team
 Team
Posts: 5967
Joined: Sun May 19, 2002 8:23 pm
Location: Phoenix, AZ
Contact:

Post by John »

Not really sure why the menu would affect your ranking. Maybe tune-ups of your description and keyword metas, and possibly your title, are in order. The spiders look at those pretty hard.
John
benchwarmer
Beginner
Beginner
Posts: 7
Joined: Tue Oct 12, 2004 9:36 pm

Post by benchwarmer »

We haven't changed the meta tags, description title etc. From our research and the article on this site about how search engines can't read java script and layers I sort of have to assume it's the new navigation since they are not linked otherwise.
User avatar
John
 Team
 Team
Posts: 5967
Joined: Sun May 19, 2002 8:23 pm
Location: Phoenix, AZ
Contact:

Post by John »

Hmmm - how 'bout a basic menu system. Categories rather than all your parts. Call it in using an include statement. Yes, it would involve adding that statement to all the pages, but from then on any changes would only have to be made to one page.
John
benchwarmer
Beginner
Beginner
Posts: 7
Joined: Tue Oct 12, 2004 9:36 pm

Post by benchwarmer »

Could you expound on what you mean - I am not sure I am following you. Thanks
User avatar
John
 Team
 Team
Posts: 5967
Joined: Sun May 19, 2002 8:23 pm
Location: Phoenix, AZ
Contact:

Post by John »

Haven't seen your site, so I have no idea what the menu looks like. However, you mentioned parts, so I ass-umed (hate to do that!) these parts can fall into general categories.

So, going down that guilded path, I thought maybe a general "Table of Contents" kind of thing might do. Place it in a file by itself...

Code: Select all

<a href="category1.htm">Category 1</a><br />
<a href="category2.htm">Category 2</a><br />
<a href="category3.htm">Category 3</a><br />
<a href="category4.htm">Category 4</a><br /> etc.
Then, a couple lines added to each page at the appropriate spot...

Code: Select all

<noscript>
<!--#include file="menu.htm" -->
</noscript>
...would bring in that menu file in case of no JS. Any changes would be made to that one file only, not all of your pages.

Note the include statement may be different for your server.

This make any sense... :?:
John
Post Reply