lol, i know this is a little old, but this is the mod i placed in my meta.tpl and it works great, except that it want to list the end of my short description for the product in "product view" at the top of my web page in plain text, cant figure out how make it stop if the short description of the product is too long....
ex.
http://www.mindells.com/customer/home.php?cat=524
look at any of the products on this page by clicking on them to see what i mean....
Quote:
<meta http-equiv="Content-Type" content="text/html; charset={$default_charset|default:"iso-8859-1"}">
{if $main ne "product"}
{if $current_category.description ne ""}
<meta name="description" content="{$current_category.description}">
{else}
<meta name="description" content="High quality home and garden products from smokers to spas, arbors to designer aquariums, to pond supplies and decor, all at mysite.com">
{/if}
{if $current_category.meta_tags ne ""}
<meta name="keywords" content="{$current_category.meta_tags}">
{else}
<meta name="keywords" content="pond supplies, outdoor cookers, portable spas, comfort line, bradley smokers, vinyl arbors, trellises, mailboxes, designer aquariums, cedar furniture">
{/if}
{else}
<meta name="description" content="{$product.descr}">
<meta name="keywords" content="pond supplies, outdoor cookers, portable spas, comfort line, bradley smokers, vinyl arbors, trellises, mailboxes, designer aquariums, cedar furniture">
{/if}
<meta name="robots" content="index,follow">
|