Hi there,
I wonder if you could help me and point me int the right direction
My main page in my dev store shows "empty" SEO metatags
<meta name="keywords" content="SEO: META KEYWORDS" />
<meta name="description" content="SEO: META DESCRIPTION" />
I believe have the right code, and Metadata is defined on the store level, but the output is missing.
I used to have meta in the General Head Tag and harcoded it in the pages before I switched to Ready Themes. Now I would like to do it right. :-)
<link rel="canonical" href="http://&mvta:global:domain:name;/&mvta:page:code;.&mvt:seo_settings:suffix;" />
</mvt:if>
<mvt:if expr="NOT ISNULL l.settings:product:metafield:keywords">
<meta name="keywords" content="&mvt:product:metafield:keywords;" />
<mvt:elseif expr="NOT ISNULL l.settings:category:metafield:keywords">
<meta name="keywords" content="&mvt:category:metafield:keywords;" />
<mvt:else>
<meta name="keywords" content="SEO: META KEYWORDS" />
</mvt:if>
<mvt:if expr="NOT ISNULL l.settings:product:metafield:description">
<meta name="description" content="&mvt:product:metafield:description;" />
<mvt:elseif expr="NOT ISNULL l.settings:category:metafield:description">
<meta name="description" content="&mvt:category:metafield:description;" />
<mvt:else>
<meta name="description" content="SEO: META DESCRIPTION" />
</mvt:if>
<link href="../css/css.php" rel="stylesheet" />
<mvt:item name="head" param="css_list" />
<mvt:item name="readytheme" param="css" />
I wonder if you could help me and point me int the right direction
My main page in my dev store shows "empty" SEO metatags
<meta name="keywords" content="SEO: META KEYWORDS" />
<meta name="description" content="SEO: META DESCRIPTION" />
I believe have the right code, and Metadata is defined on the store level, but the output is missing.
I used to have meta in the General Head Tag and harcoded it in the pages before I switched to Ready Themes. Now I would like to do it right. :-)
<link rel="canonical" href="http://&mvta:global:domain:name;/&mvta:page:code;.&mvt:seo_settings:suffix;" />
</mvt:if>
<mvt:if expr="NOT ISNULL l.settings:product:metafield:keywords">
<meta name="keywords" content="&mvt:product:metafield:keywords;" />
<mvt:elseif expr="NOT ISNULL l.settings:category:metafield:keywords">
<meta name="keywords" content="&mvt:category:metafield:keywords;" />
<mvt:else>
<meta name="keywords" content="SEO: META KEYWORDS" />
</mvt:if>
<mvt:if expr="NOT ISNULL l.settings:product:metafield:description">
<meta name="description" content="&mvt:product:metafield:description;" />
<mvt:elseif expr="NOT ISNULL l.settings:category:metafield:description">
<meta name="description" content="&mvt:category:metafield:description;" />
<mvt:else>
<meta name="description" content="SEO: META DESCRIPTION" />
</mvt:if>
<link href="../css/css.php" rel="stylesheet" />
<mvt:item name="head" param="css_list" />
<mvt:item name="readytheme" param="css" />
Comment