What version of Pligg are you using? In 9.82 this is already handled automatically. The
STORY pages have their own unique meta description and keyword tags -- yet the
CATEGORY pages do not. It pulls the description from the story content itself and it also pulls the keywords according to the tags that have been set for it.
Here's the code that goes into your meta.tpl file:
Code:
{if $meta_description neq ""}
<meta name="description" content="{$meta_description}" />
{else}
<meta name="description" content="Your generic meta description here." />
{/if}
{if $meta_keywords neq ""}
<meta name="keywords" content="{$meta_keywords}" />
{else}
<meta name="keywords" content="your, generic, keywords, here" />
{/if} The problem we run into is not having control over the title and meta tags for
CATEGORY pages
(IE: http://yourdomain.com/category/CategoryOne). This really sucks and it is very difficult to get ranked for any of the category pages. I have been trying to play with unique titles for the category pages as well but can't get my code work,
as shown here in this post.