View Single Post
  #1 (permalink)  
Old 11-02-2006, 02:31 PM
gamespel gamespel is offline
Casual Pligger
 
Join Date: Oct 2006
Posts: 69
Thanks: 6
Thanked 8 Times in 7 Posts
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}
Reply With Quote
The Following User Says Thank You to gamespel For This Useful Post: