Hi
I have created a paint layout and applied it to a standard page.
In the "Default Format" of the paint layout I want to include some metadata keywords. One keyword is woking, which on the frontend is a dropdown. An other keyword is not showing which is a multiline text box.
My markup is like this in the "Default Format" of the paint layout:
<div class="row first">
<div class="span6">
<p class="source">News story <span>|</span> %asset_updated_d% %asset_updated_F% %asset_updated_Y%<span>|</span> %asset_metadata_Campus_value%</p>
<h3>%asset_name%</h3> <!-- this one is working, happy days -->
<p>%asset_metadata_Description_value%</p> <!-- this one is not working, doesn't render any of the text, driving me crazy -->
</div>
<div class="span6">
<img src="%asset_metadata_Image_url%" class="img-responsive" />
</div>
</div>
What could I be doing wrong here?
Thanks in advance.