Hi,

I created a Value List item attribute for a custom Content Channel type and is trying to iterate through all the values in Lava.  

I tried the following:

{% assign tagList = item | Attribute:'Tags' %}

{% for aTag in tagList %}
{% assign tagKV = aTag | PropertyToKeyValue %}
{{ tagKV.Value }} |
{% endfor %}

But this is not working.  This code does work if the item attribute is a Key Value List so I it would work for Value List as well.  

Please advise.  Thanks for viewing !