Template Validation Failing
I am building a guided template and when I try and validate my template I get the following error:
Template validation failed because of these errors: Error in variable declaration: invalid value for attribute default.
I am working in the code editor when I am working on this template. Sometimes when I make a mistake with a variable, the line get's highlighted in red. Right now, I cannot see any highlighted lines telling me where this error is.
In the code I have some meta elements to define the variables such as:
<meta class="mktoString" mktoName="Social: Title" id="socialTitle" default="Title for social sharing." />
<meta class="mktoString" mktoName="Social: Description" id="socialDescription" default="">
<meta class="mktoImg" mktoName="Social: Image" id="socialImg" default="">
<meta class="mktoBoolean" mktoName="Page: Heading Hide / Show" id="pageHeadingHideShow" default="true" true_value="block" false_value="none" false_value_name="Hide" true_value_name="Show" />
<meta class="mktoString" mktoName="Page: Heading" id="pageHeading" default="">
<meta class="mktoColor" mktoName="Page: Heading Color" id="pageHeadingColor" default="ff6600" />
When I am trying to print out these variables I am doing so as:
<meta property="og:title" content="${socialTitle}" />
<meta property="og:description" content="${socialDescription}" />
<meta property="og:image" content="${socialImg}" />
<style>
#mktHeading {
background-color: #${pageHeadingColor};
display: ${pageHeadingHideShow};
}
</style>
<h1 id="mktHeading">${pageHeading}</h1>
According to documentation, I am doing it right (I hope).
Hoping to get some advice from others who might be able to point me in the right direction.