Completely confused, haven't touched the design side of things in a while and have noticed (accidentally albeit) that the 'meta description' is not being added to section pages where no meta description has been added on the Details tab.
Here's an example page, Sterling Barbecues
The 'global' keywords (GlbMetaKeywords) is showing, GlbMetaDescription isn't.
Here is the code used for generating the Meta tags, I have compared it with the original, factory layout and it seems identical.
Any other ideas what this may be?
Cheers,
Grant
Here's an example page, Sterling Barbecues
The 'global' keywords (GlbMetaKeywords) is showing, GlbMetaDescription isn't.
Here is the code used for generating the Meta tags, I have compared it with the original, factory layout and it seems identical.
Code:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="MSThemeCompatible" content="yes" /> <actinic:block if="%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Section%22%20AND%20%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Brochure%22%29%20OR%20%3cactinic%3avariable%20name%3d%22IsStoreFrontPage%22%20%2f%3e" > <actinic:block if="%3cactinic%3avariable%20name%3d%22GlbMetaKeywords%22%20%2f%3e%20%21%3d%20%22%22" > <meta name="keywords" content="<actinic:variable name="GlbMetaKeywords" />" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22GlbMetaDescription%22%20%2f%3e%20%21%3d%20%22%22" > <meta name="description" content="<actinic:variable name="GlbMetaDescription" />" /> </actinic:block> </actinic:block> <actinic:block if="%28%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Section%22%20OR%20%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Brochure%22%29%20AND%20%3cactinic%3avariable%20name%3d%22IsStoreFrontPage%22%20%2f%3e%20%3d%3d%20FALSE" > <actinic:block if="%3cactinic%3avariable%20name%3d%22MetaKeywords%22%20%2f%3e%20%21%3d%20%22%22" > <meta name="keywords" content="<actinic:variable name="MetaKeywords" />" /> </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22MetaDescription%22%20%2f%3e%20%21%3d%20%22%22" > <meta name="description" content="<actinic:variable name="MetaDescription" />" /> </actinic:block> </actinic:block>
Cheers,
Grant
Comment