| Allways show meta tags
The meta is only shown on pages where there is only 1 story.
When you replace the code (in the meta.tpl) you have the meta tags on every page.
{if $meta_description neq ""}
<meta name="description" content="{$meta_description}" />
{/if}
{if $meta_keywords neq ""}
<meta name="keywords" content="{$meta_keywords}" />
{/if}
into
{if $meta_description neq ""}
<meta name="description" content="{$meta_description}" />
{else}
<meta name="description" content="YOUR OWN DISCRIPTION" />
{/if}
{if $meta_keywords neq ""}
<meta name="keywords" content="{$meta_keywords}" />
{else}
<meta name="keywords" content="YOUR OWN KEYWORDS" />
{/if}
|