In the Standard Meta Tags layout, there is an og:image declaration for the Section Image Filename Raw variable - currently on line 66 (SD18.02)
There is a blockif around it so that it is only used if SectionImageHeight and SectionImageWidth are both >= 200
This line has an extra "/>" in it immediately before SectionImageFileNameRaw
The code should be :
Code:
<meta property="og:image" content="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsBaseHREFStandard%22%20%2f%3e" ><actinic:variable name="CatalogURL" /></actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22IsBaseHREFSSL%22%20%2f%3e" ><actinic:variable name="SSLCatalogURL" /></actinic:block>" /><actinic:variable name="SectionImageFileNameRaw" />" />
There is a blockif around it so that it is only used if SectionImageHeight and SectionImageWidth are both >= 200
This line has an extra "/>" in it immediately before SectionImageFileNameRaw
The code should be :
Code:
<meta property="og:image" content="<actinic:block if="%3cactinic%3avariable%20name%3d%22IsBaseHREFStandard%22%20%2f%3e" ><actinic:variable name="CatalogURL" /></actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22IsBaseHREFSSL%22%20%2f%3e" ><actinic:variable name="SSLCatalogURL" /></actinic:block><actinic:variable name="SectionImageFileNameRaw" />" />
Comment