Metadata keyword not working


(Gjboyd7) #1

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.

(Gjboyd7) #2

_value  This was the issue.  Removed and now working.


(Anthony) #3

Also a tip for anyone else reading this... remember metadata field names are case sensitive... wasted ages on that one when i first started!!


#4

Oh man I had wasted so much time as well. Bart helped out though and I was on track. Using %globals also helped